1
0
forked from Alepha/Alepha

Clean up the external-boost framework.

This commit is contained in:
2023-10-18 13:58:34 -04:00
parent 948877d920
commit e4b8b3f6ef
4 changed files with 11 additions and 1 deletions

View File

@ -1,6 +1,7 @@
#cmake_policy( SET CMP0002 OLD )
add_compile_options( -I ${CMAKE_BINARY_DIR} ; -std=c++20 ; -I . )
add_compile_options( -std=c++20 )
include_directories( ${CMAKE_BINARY_DIR} . )
list( APPEND CMAKE_CTEST_ARGUMENTS "-VV" )
@ -11,6 +12,11 @@ set( CMAKE_VERBOSE_MAKEFILE true )
file( CREATE_LINK ${CMAKE_SOURCE_DIR} Alepha SYMBOLIC )
if( DEFINED ALEPHA_BOOST_PATH )
file( CREATE_LINK ${CMAKE_BINARY_DIR}/${ALEPHA_BOOST_PATH} boost SYMBOLIC )
include_directories( ${CMAKE_BINARY_DIR}/${ALEPHA_BOOST_PATH}/.. )
endif()
include(CTest)