Project structure and UML first draft
This commit is contained in:
parent
fc26d7ff41
commit
736eaac94c
10 changed files with 109 additions and 0 deletions
12
tests/CMakeLists.txt
Normal file
12
tests/CMakeLists.txt
Normal file
|
@ -0,0 +1,12 @@
|
|||
cmake_minimum_required(VERSION 3.14)
|
||||
project(src)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake_modules" ${CMAKE_MODULE_PATH})
|
||||
|
||||
add_executable(gTests gTests.cpp gTests.cpp)
|
||||
|
||||
target_link_libraries(gTests
|
||||
engine
|
||||
gtest
|
||||
pthread)
|
Loading…
Add table
Add a link
Reference in a new issue