Remove gitmodule for Catch2, replaced it with header file

This commit is contained in:
2019-05-19 14:42:45 +02:00
parent 01e8075958
commit 96943bad7e
5 changed files with 15006 additions and 7 deletions

View File

@@ -2,12 +2,12 @@ cmake_minimum_required(VERSION 3.13)
project(PorygonLang)
set(CMAKE_CXX_STANDARD 17)
add_subdirectory(extern/Catch2)
#add_subdirectory(extern)
include_directories(extern)
add_library(PorygonLang src/main.cpp src/main.h++ src/Parser/Lexer.cpp src/Parser/Lexer.hpp src/Parser/TokenKind.hpp src/Parser/Token.hpp)
add_executable(PorygonLangTests src/main.cpp src/main.h++ src/Parser/Lexer.cpp src/Parser/Lexer.hpp src/Parser/TokenKind.hpp src/Parser/Token.hpp src/Parser/LexerTests.cpp)
target_link_libraries(PorygonLangTests Catch2::Catch2)
target_compile_definitions(PorygonLangTests PRIVATE TESTS_BUILD)