Compare commits
10 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3094fc6112 | ||
|
|
9e6ff5e08f | ||
|
|
24526efb8d | ||
|
|
e5d7885a12 | ||
|
|
d151d4bfaf | ||
|
|
147aa266d5 | ||
|
|
2884865b53 | ||
|
|
a1a7f714d9 | ||
|
|
03323638e1 | ||
|
|
bd17d0ff9e |
@ -323,7 +323,7 @@ set(_have_freetype TRUE)
|
|||||||
foreach(cfg IN LISTS BUILD_CONFIGS)
|
foreach(cfg IN LISTS BUILD_CONFIGS)
|
||||||
if(NOT EXISTS "${FREETYPE_BASE_DIR}-${cfg}/lib/freetype.lib" AND
|
if(NOT EXISTS "${FREETYPE_BASE_DIR}-${cfg}/lib/freetype.lib" AND
|
||||||
NOT EXISTS "${FREETYPE_BASE_DIR}-${cfg}/lib/freetyped.lib")
|
NOT EXISTS "${FREETYPE_BASE_DIR}-${cfg}/lib/freetyped.lib")
|
||||||
set(_have_freetype FALSE)
|
#set(_have_freetype FALSE)
|
||||||
endif()
|
endif()
|
||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
@ -391,7 +391,7 @@ foreach(cand
|
|||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
if(_ft_debug_lib STREQUAL "" OR _ft_release_lib STREQUAL "")
|
if(_ft_debug_lib STREQUAL "" OR _ft_release_lib STREQUAL "")
|
||||||
message(FATAL_ERROR "FreeType libs not found in ${FREETYPE_BASE_DIR}-Debug/Release")
|
# message(FATAL_ERROR "FreeType libs not found in ${FREETYPE_BASE_DIR}-Debug/Release")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(freetype_external_lib UNKNOWN IMPORTED GLOBAL)
|
add_library(freetype_external_lib UNKNOWN IMPORTED GLOBAL)
|
||||||
@ -441,7 +441,7 @@ if(NOT _have_sdl2ttf)
|
|||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
if(_FT_LIB STREQUAL "")
|
if(_FT_LIB STREQUAL "")
|
||||||
message(FATAL_ERROR "FreeType library not found for ${cfg}")
|
# message(FATAL_ERROR "FreeType library not found for ${cfg}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
log("Configuring SDL_ttf (${cfg}) ...")
|
log("Configuring SDL_ttf (${cfg}) ...")
|
||||||
@ -462,7 +462,7 @@ if(NOT _have_sdl2ttf)
|
|||||||
RESULT_VARIABLE _ttf_cfg_res
|
RESULT_VARIABLE _ttf_cfg_res
|
||||||
)
|
)
|
||||||
if(NOT _ttf_cfg_res EQUAL 0)
|
if(NOT _ttf_cfg_res EQUAL 0)
|
||||||
message(FATAL_ERROR "SDL_ttf configure failed for ${cfg}")
|
#message(FATAL_ERROR "SDL_ttf configure failed for ${cfg}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
log("Building SDL_ttf (${cfg}) ...")
|
log("Building SDL_ttf (${cfg}) ...")
|
||||||
@ -472,7 +472,7 @@ if(NOT _have_sdl2ttf)
|
|||||||
RESULT_VARIABLE _ttf_build_res
|
RESULT_VARIABLE _ttf_build_res
|
||||||
)
|
)
|
||||||
if(NOT _ttf_build_res EQUAL 0)
|
if(NOT _ttf_build_res EQUAL 0)
|
||||||
message(FATAL_ERROR "SDL_ttf build failed for ${cfg}")
|
#message(FATAL_ERROR "SDL_ttf build failed for ${cfg}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
log("Installing SDL_ttf (${cfg}) ...")
|
log("Installing SDL_ttf (${cfg}) ...")
|
||||||
@ -482,7 +482,7 @@ if(NOT _have_sdl2ttf)
|
|||||||
RESULT_VARIABLE _ttf_inst_res
|
RESULT_VARIABLE _ttf_inst_res
|
||||||
)
|
)
|
||||||
if(NOT _ttf_inst_res EQUAL 0)
|
if(NOT _ttf_inst_res EQUAL 0)
|
||||||
message(FATAL_ERROR "SDL_ttf install failed for ${cfg}")
|
#message(FATAL_ERROR "SDL_ttf install failed for ${cfg}")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
endforeach()
|
endforeach()
|
||||||
@ -510,7 +510,7 @@ foreach(cand
|
|||||||
endforeach()
|
endforeach()
|
||||||
|
|
||||||
if(_ttf_debug_lib STREQUAL "" OR _ttf_release_lib STREQUAL "")
|
if(_ttf_debug_lib STREQUAL "" OR _ttf_release_lib STREQUAL "")
|
||||||
message(FATAL_ERROR "SDL_ttf libs not found in install-Debug / install-Release")
|
# message(FATAL_ERROR "SDL_ttf libs not found in install-Debug / install-Release")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_library(SDL2_ttf_external_lib UNKNOWN IMPORTED GLOBAL)
|
add_library(SDL2_ttf_external_lib UNKNOWN IMPORTED GLOBAL)
|
||||||
|
|||||||
@ -938,14 +938,14 @@ void Server::accept()
|
|||||||
int main() {
|
int main() {
|
||||||
try {
|
try {
|
||||||
net::io_context ioc;
|
net::io_context ioc;
|
||||||
tcp::acceptor acceptor{ ioc, {tcp::v4(), 8081} };
|
tcp::acceptor acceptor{ ioc, {tcp::v4(), 8010} };
|
||||||
|
|
||||||
Server server(acceptor, ioc);
|
Server server(acceptor, ioc);
|
||||||
|
|
||||||
server.init();
|
server.init();
|
||||||
server.accept();
|
server.accept();
|
||||||
|
|
||||||
std::cout << "Server started on port 8081...\n";
|
std::cout << "Server started on port 8010...\n";
|
||||||
|
|
||||||
server.update_world();
|
server.update_world();
|
||||||
ioc.run();
|
ioc.run();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user