move the sources in src/

This commit is contained in:
Frédéric Mangano-Tarumi 2018-11-02 16:56:53 -04:00
parent a2eb11cbe3
commit 7fb5b49b81
3 changed files with 2 additions and 2 deletions

View File

@ -12,10 +12,10 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON)
include(FindPkgConfig)
pkg_check_modules(OGG REQUIRED ogg)
configure_file(config.h.in config.h @ONLY)
configure_file(src/config.h.in config.h @ONLY)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_executable(opustags opustags.cc)
add_executable(opustags src/opustags.cc)
target_compile_options(opustags PUBLIC ${OGG_CFLAGS})
target_link_libraries(opustags PUBLIC ${OGG_LIBRARIES})