reone/CMakeLists.txt

390 lines
12 KiB
Text
Raw Normal View History

2020-08-03 01:06:55 +00:00
# Copyright © 2020 Vsevolod Kremianskii
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-08-02 15:47:59 +00:00
cmake_minimum_required(VERSION 3.10)
project(reone)
option(BUILD_TOOLS "build tools executable" ON)
option(USE_EXTERNAL_GLM "use GLM library from external subdirectory" OFF)
list(APPEND CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
find_package(Boost REQUIRED COMPONENTS filesystem program_options system)
find_package(SDL2 CONFIG REQUIRED)
find_package(OpenGL REQUIRED)
find_package(GLEW REQUIRED)
find_package(MAD REQUIRED)
if(WIN32)
find_package(OpenAL CONFIG REQUIRED)
else()
find_package(PkgConfig REQUIRED)
pkg_check_modules(OpenAL REQUIRED openal)
find_package(Threads REQUIRED)
endif()
if(NOT USE_EXTERNAL_GLM)
find_package(glm REQUIRED)
endif()
2020-08-02 15:47:59 +00:00
set(HEADERS
src/audio/player.h
src/audio/soundinstance.h
src/audio/stream.h
src/audio/types.h
src/core/debug.h
2020-08-02 15:47:59 +00:00
src/core/jobs.h
src/core/log.h
src/core/pathutil.h
src/core/random.h
src/core/streamutil.h
src/core/types.h
src/game/actions.h
src/game/camera/camera.h
src/game/camera/firstperson.h
src/game/camera/thirdperson.h
2020-08-23 09:26:35 +00:00
src/game/characters.h
src/game/collisiondetect.h
2020-09-25 16:59:24 +00:00
src/game/console.h
2020-08-02 15:47:59 +00:00
src/game/game.h
src/game/gui/chargen/chargen.h
src/game/gui/chargen/classselect.h
src/game/gui/chargen/name.h
src/game/gui/chargen/portraitselect.h
src/game/gui/chargen/quick.h
src/game/gui/chargen/quickorcustom.h
src/game/gui/container.h
src/game/gui/debugoverlay.h
2020-08-05 08:24:04 +00:00
src/game/gui/dialog.h
src/game/gui/equip.h
2020-08-05 08:24:04 +00:00
src/game/gui/hud.h
2020-10-03 10:57:42 +00:00
src/game/gui/loadscreen.h
2020-08-05 08:24:04 +00:00
src/game/gui/mainmenu.h
src/game/gui/selectoverlay.h
src/game/mp/area.h
src/game/mp/callbacks.h
src/game/mp/command.h
src/game/mp/creature.h
src/game/mp/door.h
src/game/mp/game.h
src/game/mp/objectfactory.h
src/game/mp/util.h
src/game/object/area.h
2020-08-02 15:47:59 +00:00
src/game/object/creature.h
src/game/object/door.h
src/game/object/item.h
src/game/object/module.h
2020-08-02 15:47:59 +00:00
src/game/object/object.h
src/game/object/objectfactory.h
2020-08-02 15:47:59 +00:00
src/game/object/placeable.h
src/game/object/spatial.h
2020-08-02 15:47:59 +00:00
src/game/object/trigger.h
src/game/object/waypoint.h
src/game/objectselect.h
src/game/pathfinder.h
src/game/player.h
2020-08-02 15:47:59 +00:00
src/game/room.h
src/game/script/routines.h
src/game/script/util.h
2020-08-02 15:47:59 +00:00
src/game/types.h
src/game/util.h
2020-08-02 15:47:59 +00:00
src/gui/control/button.h
src/gui/control/control.h
src/gui/control/imagebutton.h
2020-08-02 15:47:59 +00:00
src/gui/control/label.h
src/gui/control/listbox.h
src/gui/control/panel.h
2020-08-05 08:24:04 +00:00
src/gui/control/scrollbar.h
2020-08-02 15:47:59 +00:00
src/gui/gui.h
src/gui/types.h
src/net/client.h
src/net/connection.h
src/net/command.h
2020-08-02 15:47:59 +00:00
src/net/server.h
src/net/types.h
src/program.h
src/render/aabb.h
src/render/font.h
2020-09-28 16:11:00 +00:00
src/render/framebuffer.h
2020-09-16 01:48:39 +00:00
src/render/fps.h
2020-08-02 15:47:59 +00:00
src/render/mesh/aabb.h
src/render/mesh/cube.h
2020-09-29 01:15:36 +00:00
src/render/mesh/quad.h
2020-08-02 15:47:59 +00:00
src/render/mesh/mesh.h
src/render/mesh/modelmesh.h
src/render/model/model.h
src/render/model/animation.h
src/render/model/modelnode.h
src/render/pipeline/control.h
src/render/pipeline/world.h
src/render/scene/aabbnode.h
src/render/scene/cameranode.h
src/render/scene/cubenode.h
src/render/scene/lightnode.h
src/render/scene/meshnode.h
src/render/scene/modelnode.h
src/render/scene/scenegraph.h
src/render/scene/scenenode.h
2020-08-23 09:26:35 +00:00
src/render/shaders.h
2020-08-02 15:47:59 +00:00
src/render/texture.h
src/render/types.h
src/render/walkmesh.h
src/render/window.h
src/resource/2dafile.h
src/resource/audio/mp3file.h
src/resource/audio/wavfile.h
src/resource/binfile.h
src/resource/blueprint/creature.h
src/resource/blueprint/door.h
src/resource/blueprint/item.h
src/resource/blueprint/placeable.h
src/resource/blueprint/trigger.h
src/resource/blueprint/waypoint.h
src/resource/bwmfile.h
src/resource/collection/biffile.h
src/resource/collection/erffile.h
src/resource/collection/folder.h
src/resource/collection/keyfile.h
src/resource/collection/pefile.h
src/resource/collection/rimfile.h
src/resource/dlgfile.h
src/resource/gfffile.h
src/resource/image/curfile.h
src/resource/image/tgafile.h
src/resource/image/tpcfile.h
src/resource/image/txifile.h
src/resource/lytfile.h
src/resource/mdlfile.h
src/resource/ncsfile.h
src/resource/pthfile.h
src/resource/resources.h
src/resource/tlkfile.h
src/resource/types.h
src/resource/util.h
src/resource/visfile.h
src/script/execution.h
src/script/program.h
src/script/routine.h
src/script/types.h
src/script/util.h
src/script/variable.h)
2020-08-02 15:47:59 +00:00
set(SOURCES
src/audio/player.cpp
src/audio/soundinstance.cpp
src/audio/stream.cpp
src/core/debug.cpp
2020-08-02 15:47:59 +00:00
src/core/jobs.cpp
src/core/log.cpp
src/core/pathutil.cpp
src/core/random.cpp
src/core/streamutil.cpp
src/game/actions.cpp
src/game/camera/camera.cpp
src/game/camera/firstperson.cpp
src/game/camera/thirdperson.cpp
2020-08-23 09:26:35 +00:00
src/game/characters.cpp
src/game/collisiondetect.cpp
2020-09-25 16:59:24 +00:00
src/game/console.cpp
2020-08-02 15:47:59 +00:00
src/game/game.cpp
src/game/gui/chargen/chargen.cpp
src/game/gui/chargen/classselect.cpp
src/game/gui/chargen/name.cpp
src/game/gui/chargen/portraitselect.cpp
src/game/gui/chargen/quick.cpp
src/game/gui/chargen/quickorcustom.cpp
src/game/gui/colors.cpp
src/game/gui/container.cpp
src/game/gui/debugoverlay.cpp
2020-08-05 08:24:04 +00:00
src/game/gui/dialog.cpp
src/game/gui/equip.cpp
2020-08-05 08:24:04 +00:00
src/game/gui/hud.cpp
2020-10-03 10:57:42 +00:00
src/game/gui/loadscreen.cpp
2020-08-05 08:24:04 +00:00
src/game/gui/mainmenu.cpp
src/game/gui/selectoverlay.cpp
src/game/mp/area.cpp
src/game/mp/command.cpp
src/game/mp/creature.cpp
src/game/mp/door.cpp
src/game/mp/game.cpp
src/game/mp/objectfactory.cpp
src/game/mp/util.cpp
src/game/object/area.cpp
2020-08-02 15:47:59 +00:00
src/game/object/creature.cpp
src/game/object/door.cpp
src/game/object/item.cpp
src/game/object/module.cpp
2020-08-02 15:47:59 +00:00
src/game/object/object.cpp
src/game/object/objectfactory.cpp
2020-08-02 15:47:59 +00:00
src/game/object/placeable.cpp
src/game/object/spatial.cpp
2020-08-02 15:47:59 +00:00
src/game/object/trigger.cpp
src/game/object/waypoint.cpp
src/game/objectselect.cpp
src/game/pathfinder.cpp
src/game/player.cpp
2020-08-02 15:47:59 +00:00
src/game/room.cpp
src/game/script/routines.cpp
src/game/script/routines_common.cpp
src/game/script/routines_kotor.cpp
src/game/script/routines_tsl.cpp
src/game/script/util.cpp
src/game/util.cpp
2020-08-02 15:47:59 +00:00
src/gui/control/button.cpp
src/gui/control/control.cpp
src/gui/control/imagebutton.cpp
2020-08-02 15:47:59 +00:00
src/gui/control/label.cpp
src/gui/control/listbox.cpp
src/gui/control/panel.cpp
2020-08-05 08:24:04 +00:00
src/gui/control/scrollbar.cpp
2020-08-02 15:47:59 +00:00
src/gui/gui.cpp
src/main.cpp
src/net/client.cpp
src/net/connection.cpp
src/net/command.cpp
2020-08-02 15:47:59 +00:00
src/net/server.cpp
src/program.cpp
src/render/aabb.cpp
src/render/font.cpp
2020-09-28 16:11:00 +00:00
src/render/framebuffer.cpp
2020-09-16 01:48:39 +00:00
src/render/fps.cpp
2020-08-02 15:47:59 +00:00
src/render/mesh/aabb.cpp
src/render/mesh/cube.cpp
2020-09-29 01:15:36 +00:00
src/render/mesh/quad.cpp
2020-08-02 15:47:59 +00:00
src/render/mesh/mesh.cpp
src/render/mesh/modelmesh.cpp
src/render/model/model.cpp
src/render/model/animation.cpp
src/render/model/modelnode.cpp
src/render/pipeline/control.cpp
src/render/pipeline/world.cpp
src/render/scene/aabbnode.cpp
src/render/scene/cameranode.cpp
src/render/scene/cubenode.cpp
src/render/scene/lightnode.cpp
src/render/scene/meshnode.cpp
src/render/scene/modelnode.cpp
src/render/scene/scenegraph.cpp
src/render/scene/scenenode.cpp
2020-08-23 09:26:35 +00:00
src/render/shaders.cpp
2020-08-02 15:47:59 +00:00
src/render/texture.cpp
src/render/walkmesh.cpp
src/render/window.cpp
src/resource/2dafile.cpp
src/resource/audio/mp3file.cpp
src/resource/audio/wavfile.cpp
src/resource/binfile.cpp
src/resource/blueprint/creature.cpp
src/resource/blueprint/door.cpp
src/resource/blueprint/item.cpp
src/resource/blueprint/placeable.cpp
src/resource/blueprint/trigger.cpp
src/resource/blueprint/waypoint.cpp
src/resource/bwmfile.cpp
src/resource/collection/biffile.cpp
src/resource/collection/erffile.cpp
src/resource/collection/folder.cpp
src/resource/collection/keyfile.cpp
src/resource/collection/pefile.cpp
src/resource/collection/rimfile.cpp
src/resource/dlgfile.cpp
src/resource/gfffile.cpp
src/resource/image/curfile.cpp
src/resource/image/tgafile.cpp
src/resource/image/tpcfile.cpp
src/resource/image/txifile.cpp
src/resource/lytfile.cpp
src/resource/mdlfile.cpp
src/resource/ncsfile.cpp
src/resource/pthfile.cpp
src/resource/resources.cpp
src/resource/tlkfile.cpp
src/resource/util.cpp
src/resource/visfile.cpp
src/script/execution.cpp
src/script/program.cpp
src/script/routine.cpp
src/script/util.cpp
src/script/variable.cpp)
2020-08-02 15:47:59 +00:00
add_executable(reone ${HEADERS} ${SOURCES})
target_compile_definitions(reone PRIVATE BOOST_BIND_GLOBAL_PLACEHOLDERS)
target_include_directories(reone SYSTEM PRIVATE ${Boost_INCLUDE_DIRS} ${SDL2_INCLUDE_DIRS} ${MAD_INCLUDE_DIR})
target_link_libraries(reone PRIVATE ${Boost_FILESYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY} ${Boost_SYSTEM_LIBRARY} GLEW::GLEW ${OPENGL_LIBRARIES} ${MAD_LIBRARY})
2020-08-02 15:47:59 +00:00
if(WIN32)
target_link_libraries(reone PRIVATE SDL2::SDL2 OpenAL::OpenAL)
else()
target_link_libraries(reone PRIVATE ${SDL2_LIBRARIES} ${OpenAL_LIBRARIES} Threads::Threads)
endif()
if(USE_EXTERNAL_GLM)
target_include_directories(reone PRIVATE ${CMAKE_SOURCE_DIR}/external/glm)
endif()
if(BUILD_TOOLS)
set(TOOLS_HEADERS
2020-09-19 01:10:46 +00:00
src/core/debug.h
src/core/log.h
src/core/pathutil.h
src/core/types.h
src/resource/2dafile.h
src/resource/binfile.h
src/resource/collection/biffile.h
src/resource/collection/erffile.h
src/resource/collection/keyfile.h
src/resource/collection/rimfile.h
src/resource/gfffile.h
src/resource/tlkfile.h
src/resource/util.h
tools/program.h
tools/tools.h)
set(TOOLS_SOURCES
2020-09-19 01:10:46 +00:00
src/core/debug.cpp
src/core/log.cpp
src/core/pathutil.cpp
src/resource/2dafile.cpp
src/resource/binfile.cpp
src/resource/collection/biffile.cpp
src/resource/collection/erffile.cpp
src/resource/collection/keyfile.cpp
src/resource/collection/rimfile.cpp
src/resource/gfffile.cpp
src/resource/tlkfile.cpp
src/resource/util.cpp
tools/main.cpp
tools/2datool.cpp
tools/biftool.cpp
tools/erftool.cpp
tools/gfftool.cpp
tools/keytool.cpp
tools/program.cpp
tools/rimtool.cpp
tools/tlktool.cpp
tools/tools.cpp)
add_executable(reone-tools ${TOOLS_HEADERS} ${TOOLS_SOURCES})
target_compile_definitions(reone-tools PRIVATE BOOST_BIND_GLOBAL_PLACEHOLDERS)
target_include_directories(reone-tools SYSTEM PRIVATE ${Boost_INCLUDE_DIRS})
target_include_directories(reone-tools PRIVATE ${CMAKE_SOURCE_DIR})
target_link_libraries(reone-tools PRIVATE ${Boost_FILESYSTEM_LIBRARY} ${Boost_PROGRAM_OPTIONS_LIBRARY} ${Boost_SYSTEM_LIBRARY})
if(USE_EXTERNAL_GLM)
target_include_directories(reone-tools PRIVATE ${CMAKE_SOURCE_DIR}/external/glm)
endif()
endif()