2023-05-10 00:05:38 +02:00
|
|
|
cmake_minimum_required( VERSION 3.16 )
|
2023-06-17 00:45:27 +02:00
|
|
|
add_module( "lib" "tier2" "vpc" ${FOLDER_CONTEXT} TRUE TRUE )
|
2023-05-10 00:05:38 +02:00
|
|
|
|
|
|
|
start_sources()
|
|
|
|
|
|
|
|
add_sources( SOURCE_GROUP "Utility"
|
|
|
|
"curlutils.cpp"
|
|
|
|
"fileutils.cpp"
|
|
|
|
"meshutils.cpp"
|
|
|
|
"renderutils.cpp"
|
|
|
|
"socketcreator.cpp"
|
|
|
|
)
|
|
|
|
|
2023-05-14 17:36:08 +02:00
|
|
|
file( GLOB TIER2_PUBLIC_HEADERS
|
|
|
|
"${ENGINE_SOURCE_DIR}/public/tier2/*"
|
|
|
|
)
|
2023-05-10 00:05:38 +02:00
|
|
|
add_sources( SOURCE_GROUP "Public"
|
2023-05-14 17:36:08 +02:00
|
|
|
"${TIER2_PUBLIC_HEADERS}"
|
2023-05-10 00:05:38 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
end_sources()
|
|
|
|
|
|
|
|
target_include_directories( ${PROJECT_NAME} PRIVATE "${ENGINE_SOURCE_DIR}/tier0/" "${ENGINE_SOURCE_DIR}/tier1/" )
|