Update Ghoul repository

Add explicit C++14 standard requirement for OpenSpaceTest target
This commit is contained in:
Alexander Bock
2016-01-18 18:32:20 +01:00
parent fc60692aeb
commit dda5c3acc2
2 changed files with 4 additions and 1 deletions

View File

@@ -37,4 +37,7 @@ if (OPENSPACE_HAVE_TESTS)
add_executable(OpenSpaceTest ${OPENSPACE_BASE_DIR}/tests/main.cpp ${OPENSPACE_TEST_FILES} ${OPENSPACE_HEADER} ${OPENSPACE_SOURCE})
target_link_libraries(OpenSpaceTest gtest ${DEPENDENT_LIBS})
set_property(TARGET OpenSpaceTest PROPERTY CXX_STANDARD 14)
set_property(TARGET OpenSpaceTest PROPERTY CXX_STANDARD_REQUIRED On)
endif (OPENSPACE_HAVE_TESTS)