mirror of
https://github.com/minetest/minetest.git
synced 2025-07-01 07:30:23 +02:00
Use proper CMakeLists.txt for network and client directories
This commit is contained in:
@ -352,6 +352,7 @@ add_custom_target(GenerateVersion
|
||||
WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}")
|
||||
|
||||
add_subdirectory(jthread)
|
||||
add_subdirectory(network)
|
||||
add_subdirectory(script)
|
||||
add_subdirectory(util)
|
||||
|
||||
@ -431,10 +432,7 @@ set(common_SRCS
|
||||
version.cpp
|
||||
voxel.cpp
|
||||
voxelalgorithms.cpp
|
||||
network/connection.cpp
|
||||
network/networkpacket.cpp
|
||||
network/packethandlers/server.cpp
|
||||
network/serveropcodes.cpp
|
||||
${common_network_SRCS}
|
||||
${JTHREAD_SRCS}
|
||||
${common_SCRIPT_SRCS}
|
||||
${UTIL_SRCS}
|
||||
@ -461,9 +459,16 @@ if(WIN32)
|
||||
endif()
|
||||
|
||||
# Client sources
|
||||
|
||||
if (BUILD_CLIENT)
|
||||
add_subdirectory(client)
|
||||
endif(BUILD_CLIENT)
|
||||
|
||||
set(minetest_SRCS
|
||||
${common_SRCS}
|
||||
${sound_SRCS}
|
||||
${client_SRCS}
|
||||
${client_network_SRCS}
|
||||
camera.cpp
|
||||
chat.cpp
|
||||
client.cpp
|
||||
@ -498,9 +503,6 @@ set(minetest_SRCS
|
||||
sky.cpp
|
||||
tile.cpp
|
||||
wieldmesh.cpp
|
||||
client/clientlauncher.cpp
|
||||
network/clientopcodes.cpp
|
||||
network/packethandlers/client.cpp
|
||||
${minetest_SCRIPT_SRCS}
|
||||
)
|
||||
list(SORT minetest_SRCS)
|
||||
|
Reference in New Issue
Block a user