-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Your Name
committed
Dec 11, 2022
1 parent
f99e75d
commit 5b25f98
Showing
293 changed files
with
24,679 additions
and
65 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,4 @@ CTestTestfile.cmake | |
_deps | ||
.idea | ||
cmake-build-debug | ||
/doxygen/ |
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,3 @@ | ||
[submodule "lab4/src/lib/simpleini"] | ||
path = lab4/src/lib/simpleini | ||
url = https://github.com/brofield/simpleini |
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
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
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
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,25 @@ | ||
cmake_minimum_required(VERSION 3.17) | ||
set(CMAKE_CXX_STANDARD 17) | ||
|
||
project(lab4) | ||
|
||
set(G_DIR src/game) | ||
set(SIMPLE_INI_DIR src/lib/simpleini) | ||
|
||
include_directories(src/graphics) | ||
include_directories(${G_DIR}) | ||
include_directories(${G_DIR}/mobs) | ||
include_directories(${SIMPLE_INI_DIR}) | ||
|
||
add_library(dungeon ${G_DIR}/Level.cpp ${G_DIR}/RangeCalc.cpp ${G_DIR}/World.cpp ${G_DIR}/TalentConfig.cpp | ||
${G_DIR}/Entity.cpp ${G_DIR}/Player.cpp ${G_DIR}/Mob.cpp | ||
${G_DIR}/mobs/Golem.cpp ${G_DIR}/mobs/Mortal.cpp ${G_DIR}/mobs/Undead.cpp) | ||
|
||
add_library(simple-ini ${SIMPLE_INI_DIR}/ConvertUTF.c ${SIMPLE_INI_DIR}/ConvertUTF.h ${SIMPLE_INI_DIR}/SimpleIni.h) | ||
|
||
add_executable(lab4 src/main.cpp src/graphics/TileMap.cpp) | ||
include_directories(src/test) | ||
|
||
target_link_libraries(lab4 dungeon) | ||
target_link_libraries(lab4 simple-ini) | ||
target_link_libraries(lab4 sfml-graphics sfml-window sfml-system) |
Oops, something went wrong.