PorygonLang/CMakeLists.txt

15 lines
866 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)
#add_subdirectory(extern)
include_directories(extern)
2019-05-18 18:35:51 +00:00
2019-05-21 10:59:15 +00:00
add_library(PorygonLang src/Parser/Lexer.cpp src/Parser/Lexer.hpp src/Parser/TokenKind.hpp src/Parser/Token.hpp src/Parser/Parser.cpp src/Parser/Parser.hpp src/Parser/ParsedStatements/ParsedStatement.hpp src/Parser/ParsedExpressions/ParsedExpression.hpp src/Parser/BinaryOperatorKind.hpp src/Script.cpp src/Script.hpp)
add_executable(PorygonLangTests src/Parser/Lexer.cpp src/Parser/Lexer.hpp src/Parser/TokenKind.hpp src/Parser/Token.hpp src/Parser/LexerTests.cpp src/Parser/Parser.cpp src/Parser/Parser.hpp src/Parser/ParsedStatements/ParsedStatement.hpp src/Parser/ParsedExpressions/ParsedExpression.hpp src/Parser/BinaryOperatorKind.hpp)
2019-05-18 18:35:51 +00:00
target_compile_definitions(PorygonLangTests PRIVATE TESTS_BUILD)
2019-05-18 18:35:51 +00:00
include(CTest)