b9ac810414
- 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
14 lines
320 B
CMake
14 lines
320 B
CMake
project (gitversion-test)
|
|
|
|
set(SOURCES
|
|
ParserTest.cpp
|
|
VersionCompareTest.cpp
|
|
)
|
|
|
|
add_executable(${PROJECT_NAME} ${SOURCES})
|
|
target_link_libraries(${PROJECT_NAME} googletest gitversion)
|
|
add_test(${PROJECT_NAME} ${PROJECT_NAME})
|
|
|
|
target_enable_style_warnings(${PROJECT_NAME})
|
|
target_activate_cpp14(${PROJECT_NAME})
|