2025-07-05 13:28:41 +03:30
|
|
|
if(NOT WIN32)
|
|
|
|
add_library_module(engine
|
|
|
|
core/application.cpp
|
|
|
|
layer/layer.cpp
|
|
|
|
layer/layer_stack.cpp
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
add_library_module(engine
|
|
|
|
core/application.cpp
|
|
|
|
layer/layer.cpp
|
|
|
|
layer/layer_stack.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2025-07-11 01:42:56 +03:30
|
|
|
target_link_libraries(engine
|
|
|
|
PUBLIC
|
|
|
|
renderer
|
|
|
|
logger
|
|
|
|
ui
|
|
|
|
asset_parser
|
|
|
|
asset_manager
|
|
|
|
lt_debug
|
|
|
|
ecs
|
|
|
|
window
|
|
|
|
glad
|
2025-07-11 02:22:21 +03:30
|
|
|
time
|
2025-07-11 01:42:56 +03:30
|
|
|
opengl::opengl
|
|
|
|
EnTT::EnTT
|
2025-07-05 13:28:41 +03:30
|
|
|
)
|