Some checks failed
continuous-integration/drone/push Build is failing
ref: 0017308648
ref: https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/issues/1894
ref: https://www.xfree86.org/4.7.0/DRI11.html
21 lines
381 B
CMake
21 lines
381 B
CMake
if (NOT WIN32)
|
|
add_library_module(surface linux/system.cpp)
|
|
target_link_libraries(surface PRIVATE X11)
|
|
|
|
else(WIN32)
|
|
add_library_module(surface windows/system.cpp)
|
|
|
|
endif()
|
|
|
|
target_link_libraries(surface PUBLIC
|
|
ecs
|
|
app
|
|
math
|
|
memory
|
|
PRIVATE
|
|
logger
|
|
lt_debug
|
|
)
|
|
|
|
add_test_module(surface system.test.cpp)
|
|
add_fuzz_module(surface system.fuzz.cpp)
|