PorygonLang/CMakeLists.txt

15 lines
413 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 SHARED ${SRC_FILES})
2019-05-21 11:05:17 +00:00
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)