mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 16:51:29 +00:00
Fix client files, loginserver and tests
This commit is contained in:
parent
ccb3cef3d7
commit
1db4882cda
@ -166,14 +166,14 @@ if(EQEMU_BUILD_SERVER)
|
||||
add_subdirectory(eqlaunch)
|
||||
endif()
|
||||
|
||||
#if(EQEMU_BUILD_LOGIN)
|
||||
# add_subdirectory(loginserver)
|
||||
#endif()
|
||||
#
|
||||
#if(EQEMU_BUILD_TESTS)
|
||||
# add_subdirectory(tests)
|
||||
#endif()
|
||||
#
|
||||
#if(EQEMU_BUILD_CLIENT_FILES)
|
||||
# add_subdirectory(client_files)
|
||||
#endif()
|
||||
if(EQEMU_BUILD_LOGIN)
|
||||
add_subdirectory(loginserver)
|
||||
endif()
|
||||
|
||||
if(EQEMU_BUILD_TESTS)
|
||||
add_subdirectory(tests)
|
||||
endif()
|
||||
|
||||
if(EQEMU_BUILD_CLIENT_FILES)
|
||||
add_subdirectory(client_files)
|
||||
endif()
|
||||
|
||||
@ -11,6 +11,6 @@ add_executable(export_client_files ${export_sources} ${export_headers})
|
||||
|
||||
install(TARGETS export_client_files RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
||||
|
||||
target_link_libraries(export_client_files ${SERVER_LIBS})
|
||||
target_link_libraries(export_client_files common)
|
||||
|
||||
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|
||||
|
||||
@ -11,6 +11,6 @@ add_executable(import_client_files ${import_sources} ${import_headers})
|
||||
|
||||
install(TARGETS import_client_files RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
||||
|
||||
target_link_libraries(import_client_files ${SERVER_LIBS})
|
||||
target_link_libraries(import_client_files common)
|
||||
|
||||
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|
||||
|
||||
@ -30,6 +30,6 @@ add_executable(loginserver ${eqlogin_sources} ${eqlogin_headers})
|
||||
|
||||
install(TARGETS loginserver RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
||||
|
||||
target_link_libraries(loginserver ${SERVER_LIBS})
|
||||
target_link_libraries(loginserver common)
|
||||
|
||||
set(EXECUTABLE_OUTPUT_PATH ${PROJECT_BINARY_DIR}/bin)
|
||||
|
||||
@ -21,7 +21,7 @@ set(tests_headers
|
||||
|
||||
add_executable(tests ${tests_sources} ${tests_headers})
|
||||
|
||||
target_link_libraries(tests common cppunit ${SERVER_LIBS})
|
||||
target_link_libraries(tests common cppunit)
|
||||
|
||||
install(TARGETS tests RUNTIME DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user