libcryfs/test/cryfs-cli/CMakeLists.txt
Sebastian Messmer b9ac810414 - The version field in the config file is updated when the file system is opened with a newer CryFS version (i.e. it is migrated to the newer version).
- We introduced a CreatedWithVersion field instead which gets the semantics the version field had before (i.e. which version of CryFS was the file system originally created with)
- Move VersionCompare to gitversion package
2016-03-27 00:09:07 +08:00

22 lines
573 B
CMake

project (cryfs-cli-test)
set(SOURCES
CallAfterTimeoutTest.cpp
testutils/CliTest.cpp
CliTest_Setup.cpp
CliTest_WrongEnvironment.cpp
program_options/UtilsTest.cpp
program_options/ProgramOptionsTest.cpp
program_options/ParserTest.cpp
CliTest_ShowingHelp.cpp
EnvironmentTest.cpp
VersionCheckerTest.cpp
)
add_executable(${PROJECT_NAME} ${SOURCES})
target_link_libraries(${PROJECT_NAME} googletest cryfs-cli)
add_test(${PROJECT_NAME} ${PROJECT_NAME})
target_enable_style_warnings(${PROJECT_NAME})
target_activate_cpp14(${PROJECT_NAME})