Threads and tasks

This commit is contained in:
2026-01-29 15:28:50 +03:00
parent 4cf0ea5321
commit da4c1fee0e
21 changed files with 1464 additions and 558 deletions

View File

@@ -9,13 +9,14 @@ add_library(world-build STATIC world-build.cpp)
target_link_libraries(world-build PRIVATE GameData)
target_include_directories(world-build PUBLIC .)
add_executable(test test.cpp)
target_link_libraries(test PRIVATE action world-build lua GameData OgreMain)
#add_executable(test test.cpp)
#target_link_libraries(test PRIVATE action world-build lua GameData OgreMain)
add_executable(test2 test2.cpp)
target_link_libraries(test2 PRIVATE action world-build lua GameData OgreMain)
#add_executable(test2 test2.cpp)
#target_link_libraries(test2 PRIVATE action world-build lua GameData OgreMain)
add_executable(mark_harbors mark_harbors.cpp)
target_link_libraries(mark_harbors PRIVATE lua OgreMain OgreRTShaderSystem)
#add_executable(mark_harbors mark_harbors.cpp)
#target_link_libraries(mark_harbors PRIVATE lua OgreMain OgreRTShaderSystem)
#add_custom_target(world ALL DEPENDS test test2)
add_custom_target(world ALL DEPENDS test test2)