forked from ceciivanov/OOP_RPG_GameProject
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
6 lines (4 loc) · 1.52 KB
/
CMakeLists.txt
1
2
3
4
5
6
cmake_minimum_required(VERSION 3.17)
project(GameProject)
set(CMAKE_CXX_STANDARD 14)
add_executable(GameProject main.cpp Items/Item.h Items/Weapon.h Items/Armor.h Items/Potion.h Spells/Spell.h Spells/IceSpell.h Spells/FireSpell.h Spells/LightingSpell.h Creatures/LivingCreature.h Creatures/Heroes/Hero.h Creatures/Heroes/Warrior.h Items/Item.cpp Items/Armor.cpp Items/Weapon.cpp Items/Potion.cpp Spells/Spell.cpp Spells/LightingSpell.cpp Spells/IceSpell.cpp Creatures/Heroes/Hero.cpp Spells/FireSpell.cpp Creatures/Heroes/HERO_ATTRIBUTES.h Creatures/LivingCreature.cpp Creatures/Heroes/Warrior.cpp Creatures/Heroes/Sorcerer.cpp Creatures/Heroes/Sorcerer.h Creatures/Heroes/Paladin.cpp Creatures/Heroes/Paladin.h Range/Range.h Creatures/Monsters/Monster.cpp Creatures/Monsters/Monster.h Creatures/Monsters/Dragon.cpp Creatures/Monsters/Dragon.h Creatures/Monsters/ExoSkeleton.cpp Creatures/Monsters/ExoSkeleton.h Creatures/Monsters/Spirit.cpp Creatures/Monsters/Spirit.h Creatures/Heroes/Inventory.cpp Creatures/Heroes/Inventory.h Creatures/Heroes/AcquiredSpells.cpp Creatures/Heroes/AcquiredSpells.h MarketPlace/Market.cpp MarketPlace/Market.h MarketPlace/SpellSection.cpp MarketPlace/SpellSection.h MarketPlace/ItemSection.cpp MarketPlace/ItemSection.h Map/Grid/Grid.cpp Map/Grid/Grid.h Game.cpp Game.h Squads/HeroSquad.cpp Squads/HeroSquad.h Map/Square/Square.cpp Map/Square/Square.h Squads/MonsterSquad.h Squads/MonsterSquad.cpp Fight/Fight.cpp Fight/Fight.h Creatures/Monsters/ActiveSpells.cpp Spells/SpellEffect.cpp Range/Range.cpp KEYBOARD_SYMBOLS.h)