mirror of
https://github.com/celisej567/mcpe.git
synced 2026-01-05 18:10:09 +03:00
13 lines
221 B
CMake
13 lines
221 B
CMake
add_library(Server STATIC
|
|
Options.cpp Options.hpp
|
|
Server.cpp Server.hpp
|
|
)
|
|
target_link_libraries(Server PRIVATE
|
|
Common
|
|
Network
|
|
World
|
|
)
|
|
if (USE_SDL)
|
|
target_link_libraries(Server PRIVATE SDL)
|
|
endif()
|