aboutsummaryrefslogtreecommitdiff
path: root/importer/CMakeLists.txt
blob: 587952ece1ff225046dfb50ce6c0a9f896f50cd7 (plain)
1
2
3
4
5
6
7
8
9
project(dict_importer VERSION 0.1 LANGUAGES C)

file(GLOB src CONFIGURE_DEPENDS "*.c")
add_executable(dict_importer ${src})

target_compile_options(dict_importer PRIVATE -Wall -Wextra -Wpedantic -Werror)
target_include_directories(dict_importer PUBLIC "${PROJECT_BINARY_DIR}" "${PROJECT_SOURCE_DIR}")
target_link_libraries(dict_importer sqlite3 lib)