Skip to content

Commit

Permalink
Initial Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
AKEevee committed Dec 20, 2021
0 parents commit 3d8d0ed
Show file tree
Hide file tree
Showing 61 changed files with 8,373 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions .idea/MHG.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/dataSources.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.19)
project(MonsterMelancholy)

set(CMAKE_CXX_STANDARD 14)
set(CMAKE_EXE_LINKER_FLAGS "-static")
set(mongoc-1.0_DIR "C:/Program Files (x86)/Project/lib/cmake/mongoc-1.0")

find_package (mongoc-1.0 1.7 REQUIRED)
add_executable(MonsterMelancholy main.cpp MHGcombat.h MHGtextDisplay.h MHGsounds.h MHGdataHandle.h sha256.h sha256.cpp)
target_link_libraries (MonsterMelancholy PRIVATE mongo::mongoc_static)
Loading

0 comments on commit 3d8d0ed

Please sign in to comment.