This commit is contained in:
SaltySnail
2024-05-25 20:32:07 +02:00
parent 93192fd9b5
commit 29c3fed374
7 changed files with 63 additions and 5 deletions

View File

@@ -50,6 +50,7 @@ set(PRJ_HEADERS
include/VehicleData.h
include/Env.h
include/Profiling.h
include/ChronoWrapper.h
)
# add all source files (.cpp) to this, except the one with main()
set(PRJ_SOURCES
@@ -74,6 +75,7 @@ set(PRJ_SOURCES
src/VehicleData.cpp
src/Env.cpp
src/Profiling.cpp
src/ChronoWrapper.cpp
)
find_package(Lua REQUIRED)
@@ -220,4 +222,4 @@ if(${PROJECT_NAME}_ENABLE_UNIT_TESTING)
if(MSVC)
target_link_options(${PROJECT_NAME}-tests PRIVATE "/SUBSYSTEM:CONSOLE")
endif(MSVC)
endif()
endif()