Initial version of semver 2.0.0 parser.

This commit is contained in:
Marko Zivanovic
2015-10-08 00:40:45 +02:00
commit 76506c5ffd
10 changed files with 763 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
set(Boost_USE_STATIC_LIBS ON)
set(Boost_USE_MULTITHREADED ON)
find_package(Boost COMPONENTS unit_test_framework)
#find_package(Threads)
include_directories(../include)
include_directories(
${Boost_INCLUDE_DIRS}
)
add_executable(semver200_parser_tests semver200_parser_tests.cpp)
target_link_libraries(semver200_parser_tests
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
semver
)
add_executable(semver200_comparator_tests semver200_comparator_tests.cpp)
target_link_libraries(semver200_comparator_tests
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
semver
)