erius
8f18f9ef8f
Moved ftsort sources to bin/ftsort Moved tape_config.h into bin/ftsort Implemented command line parsing for ftsort in tape_config.cpp ftsort binary is in working state
8 lines
282 B
CMake
8 lines
282 B
CMake
add_compile_definitions(VERSION=${PROJECT_VERSION})
|
|
|
|
add_executable(ftsort)
|
|
target_sources(ftsort PRIVATE ftsort/ftsort.cpp
|
|
ftsort/tape_config.cpp
|
|
ftsort/tape_config.h
|
|
)
|
|
target_link_libraries(ftsort PRIVATE tapelib)
|