Clean-up code to satisfy GCC's pedantic mode requirements. Add fix for Clang not working with GCC 5 C++ library (https://llvm.org/bugs/show_bug.cgi?id=23529)
This commit is contained in:
+3
-3
@@ -9,19 +9,19 @@ include_directories(
|
||||
${Boost_INCLUDE_DIRS}
|
||||
)
|
||||
|
||||
add_executable(semver200_parser_tests semver200_parser_tests.cpp)
|
||||
add_executable(semver200_parser_tests semver200_parser_tests.cpp clang_fixes.cpp)
|
||||
target_link_libraries(semver200_parser_tests
|
||||
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
|
||||
semver
|
||||
)
|
||||
|
||||
add_executable(semver200_comparator_tests semver200_comparator_tests.cpp)
|
||||
add_executable(semver200_comparator_tests semver200_comparator_tests.cpp clang_fixes.cpp)
|
||||
target_link_libraries(semver200_comparator_tests
|
||||
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
|
||||
semver
|
||||
)
|
||||
|
||||
add_executable(semver200_version_tests semver200_version_tests.cpp)
|
||||
add_executable(semver200_version_tests semver200_version_tests.cpp clang_fixes.cpp)
|
||||
target_link_libraries(semver200_version_tests
|
||||
${Boost_UNIT_TEST_FRAMEWORK_LIBRARY}
|
||||
semver
|
||||
|
||||
Reference in New Issue
Block a user