mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Enable in-package substitute of tr1/tuple
In clang 6.0 the tr1/tuple header is not present, and this cause a compilation error inside of the gtest framework. However, if we set a define, it will use its own substitute of tr1/tuple, which is sufficient for the unit tests.
This commit is contained in:
@@ -61,6 +61,10 @@ IF(${CMAKE_SYSTEM_NAME} MATCHES "Linux")
|
||||
set( EXTERNAL_LINK_LIBRARIES
|
||||
pthread
|
||||
)
|
||||
ELSEIF(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
||||
set( CMAKE_CXX_FLAGS
|
||||
"-DGTEST_USE_OWN_TR1_TUPLE=1"
|
||||
)
|
||||
ENDIF()
|
||||
|
||||
target_link_libraries( ${ProjectName} ${LINK_LIBRARIES} ${EXTERNAL_LINK_LIBRARIES})
|
||||
|
||||
Reference in New Issue
Block a user