mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
* split rtech_game and rtech_utils cpp files into multiple files * rebuilt several large pak load routines for debugging and custom implementations * moved rson code to rtech_game * reworked and improved engine and sdk pak precache system * reversed more of the jobthreads system
19 lines
405 B
CMake
19 lines
405 B
CMake
cmake_minimum_required( VERSION 3.16 )
|
|
add_module( "lib" "vpc" "" ${FOLDER_CONTEXT} TRUE TRUE )
|
|
|
|
start_sources()
|
|
|
|
add_sources( SOURCE_GROUP "Private"
|
|
"IAppSystem.cpp"
|
|
"IAppSystem.h"
|
|
"interfaces.cpp"
|
|
"interfaces.h"
|
|
)
|
|
|
|
add_sources( SOURCE_GROUP "Public"
|
|
"${ENGINE_SOURCE_DIR}/public/ikeyvaluessystem.h"
|
|
)
|
|
|
|
end_sources()
|
|
target_precompile_headers( ${PROJECT_NAME} PRIVATE ${GLOBAL_PCH} )
|