1
0
forked from Alepha/Alepha

Merge branch 'master' of github.com:adamlsd/Alepha

Conflicts:
	cmake/rules.cmake
This commit is contained in:
2023-10-20 04:50:11 -04:00
4 changed files with 11 additions and 1 deletions

View File

@ -1,7 +1,8 @@
#cmake_policy( SET CMP0002 OLD )
add_compile_options( -I ${CMAKE_BINARY_DIR} ; -std=c++20 ; -I . )
add_compile_options( -std=c++20 )
add_compile_options( -fdiagnostics-column-unit=byte )
include_directories( ${CMAKE_BINARY_DIR} . )
list( APPEND CMAKE_CTEST_ARGUMENTS "-VV" )
@ -12,6 +13,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)