mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2026-05-11 03:31:44 +00:00
17 lines
454 B
CMake
17 lines
454 B
CMake
set(LAYER_SOURCES
|
|
"src/configuration/config.cpp"
|
|
"src/configuration/detection.cpp"
|
|
"src/context/instance.cpp"
|
|
"src/entrypoint.cpp")
|
|
|
|
add_library(lsfg-vk-layer SHARED ${LAYER_SOURCES})
|
|
|
|
target_link_libraries(lsfg-vk-layer
|
|
PUBLIC lsfg-vk-common
|
|
PUBLIC lsfg-vk-backend)
|
|
|
|
target_include_directories(lsfg-vk-layer SYSTEM
|
|
PRIVATE thirdparty/include)
|
|
|
|
set_target_properties(lsfg-vk-layer PROPERTIES
|
|
CXX_VISIBILITY_PRESET hidden)
|