Some checks reported errors
continuous-integration/drone/push Build was killed
feat: surface system This commit puts the project in major jeopardy as it overhauls the architecture such as removing the layer stack completely, etc. I am filled with determination.
13 lines
193 B
CMake
13 lines
193 B
CMake
if (NOT WIN32)
|
|
add_library_module(surface system.cpp linux/system.cpp)
|
|
else()
|
|
endif()
|
|
|
|
target_link_libraries(surface PUBLIC
|
|
ecs
|
|
app
|
|
PRIVATE
|
|
glfw
|
|
logger
|
|
lt_debug
|
|
)
|