Implemented basic containers and ref pointers

This commit is contained in:
HOEGLER Stefan
2020-02-25 00:45:20 +01:00
parent 4c491a9378
commit a14237d6ce
31 changed files with 1212 additions and 36 deletions
+13
View File
@@ -0,0 +1,13 @@
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ".")
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})
enable_testing()
add_test(SeeleEngineTest Seele_unit_tests)