PorygonLang/CMakeLists.txt

28 lines
617 B
CMake
Raw Normal View History

2019-05-18 18:35:51 +00:00
cmake_minimum_required(VERSION 3.13)
project(PorygonLang)
set(CMAKE_CXX_STANDARD 17)
include_directories(extern)
2019-05-18 18:35:51 +00:00
2019-05-21 15:23:56 +00:00
file(GLOB_RECURSE SRC_FILES "src/*.cpp" "src/*.hpp")
file(GLOB_RECURSE TEST_FILES "tests/*.cpp" "tests/*.hpp")
2019-05-21 11:05:17 +00:00
add_library(PorygonLang ${SRC_FILES})
add_executable(PorygonLangTests
${SRC_FILES}
2019-05-21 15:23:56 +00:00
${TEST_FILES})
2019-05-18 18:35:51 +00:00
target_compile_definitions(PorygonLangTests PRIVATE TESTS_BUILD)
2019-05-23 16:50:09 +00:00
find_package( Boost )
include_directories(
${BOOST_INCLUDE_DIRS}
)
target_link_libraries(PorygonLang ${Boost_LIBRARIES} )
target_link_libraries(PorygonLangTests ${Boost_LIBRARIES} )
2019-05-18 18:35:51 +00:00
include(CTest)