Fix dedicated server compile errors

These files should have been placed into the client only group.
This commit is contained in:
Kawe Mazidjatari 2023-06-04 11:19:30 +02:00
parent 1afa75fec3
commit bba1cdd8b2

View File

@ -117,10 +117,6 @@ add_sources( SOURCE_GROUP "Client"
"client/cdll_engine_int.h"
"client/cl_ents_parse.cpp"
"client/cl_ents_parse.h"
"client/cl_main.cpp"
"client/cl_main.h"
"client/cl_splitscreen.cpp"
"client/cl_splitscreen.h"
"client/client.cpp"
"client/client.h"
)
@ -136,6 +132,10 @@ if( ${PROJECT_NAME} STREQUAL "engine" )
add_sources( SOURCE_GROUP "Client" # Client only.
"client/clientstate.cpp"
"client/clientstate.h"
"client/cl_main.cpp"
"client/cl_main.h"
"client/cl_splitscreen.cpp"
"client/cl_splitscreen.h"
"client/cl_rcon.cpp"
"client/cl_rcon.h"
"client/vengineclient_impl.cpp"