-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'enum_iterator' into fix-bug-968-wrong-roads
- Loading branch information
Showing
91 changed files
with
2,368 additions
and
502 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule MAPS
updated
3 files
+ − | NEW/GreenPlains.SWD | |
+ − | SEA/MudPuddles4.wld | |
+ − | SEA/pathfinding.wld |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule dev-tools
updated
3 files
+45 −45 | CMakeLists.txt | |
+ − | msvc/lib/x86/libcurl.lib | |
+ − | msvc/lib/x86/libcurld.lib |
Submodule libsiedler2
updated
2 files
+4 −4 | .github/workflows/release.yml | |
+9 −9 | .github/workflows/unit-tests.yml |
Submodule libutil
updated
10 files
+14 −14 | CMakeLists.txt | |
+0 −42 | cmake/FindSndfile.cmake | |
+3 −3 | libs/common/CMakeLists.txt | |
+22 −24 | libs/common/include/s25util/BinaryFile.h | |
+30 −0 | libs/common/include/s25util/file_handle.h | |
+32 −32 | libs/common/src/BinaryFile.cpp | |
+7 −7 | libs/log/CMakeLists.txt | |
+3 −3 | libs/network/CMakeLists.txt | |
+5 −1 | libs/network/src/UPnP_Other.cpp | |
+2 −2 | tools/ci/installBoost.sh |
Submodule s25edit
updated
4 files
+56 −4 | CGame.cpp | |
+1 −1 | CGame.h | |
+5 −5 | CMakeLists.txt | |
+1 −2 | callbacks.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Copyright (C) 2005 - 2024 Settlers Freaks <sf-team at siedler25.org> | ||
# | ||
# SPDX-License-Identifier: GPL-2.0-or-later | ||
|
||
add_executable(ai-battle main.cpp HeadlessGame.cpp) | ||
target_link_libraries(ai-battle PRIVATE s25Main Boost::program_options Boost::nowide) | ||
|
||
if(WIN32) | ||
include(GatherDll) | ||
gather_dll_copy(ai-battle) | ||
endif() |
Oops, something went wrong.