reorganize source tree

This commit is contained in:
Gered 2021-03-20 12:08:24 -04:00
parent 1ba23ee103
commit 32d5fdcbad
4 changed files with 2 additions and 2 deletions

View file

@ -10,11 +10,11 @@ find_package(Iconv REQUIRED)
find_library(SYLVERANT_LIBRARY sylverant REQUIRED)
# decrypt_packets
add_executable(decrypt_packets decrypt_packets/main.c)
add_executable(decrypt_packets decrypt_packets.c)
target_link_libraries(decrypt_packets ${SYLVERANT_LIBRARY})
# gen_qst_header
add_executable(gen_qst_header gen_qst_header/main.c)
add_executable(gen_qst_header gen_qst_header.c)
target_link_libraries(gen_qst_header ${SYLVERANT_LIBRARY} ${ICONV_LIBRARIES})
target_compile_definitions(gen_qst_header PRIVATE ICONV_CONST=${ICONV_CONST})
target_include_directories(gen_qst_header PRIVATE ${ICONV_INCLUDE_DIR})