Redo of render paths

This commit is contained in:
Dynamitos
2020-06-02 11:46:18 +02:00
parent bb5b48698a
commit 356e6058fe
121 changed files with 3890 additions and 572 deletions
+16 -1
View File
@@ -5,9 +5,24 @@ find_package(Boost COMPONENTS unit_test_framework REQUIRED)
include_directories(${ENGINE_ROOT})
include_directories(${Boost_INCLUDE_DIRS})
add_executable(Seele_unit_tests "")
add_subdirectory(Engine/)
target_link_libraries(Seele_unit_tests ${Boost_LIBRARIES})
target_precompile_headers(Seele_unit_tests
PRIVATE
<assert.h>
<memory>
<atomic>
<cstring>
<iostream>
<string>
<thread>
<functional>
<filesystem>
<fstream>
<mutex>
<condition_variable>)
enable_testing()
add_test(SeeleEngineTest Seele_unit_tests)