73 lines
2.2 KiB
CMake
73 lines
2.2 KiB
CMake
|
# MassBuilderSaveTool
|
||
|
# Copyright (C) 2021 Guillaume Jacquemin
|
||
|
#
|
||
|
# 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/>.
|
||
|
|
||
|
set(CMAKE_CXX_STANDARD 14)
|
||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
||
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
||
|
|
||
|
find_package(Corrade REQUIRED Main Containers Utility Interconnect)
|
||
|
find_package(Magnum REQUIRED GL Sdl2Application SceneGraph MeshTools Primitives)
|
||
|
find_package(MagnumIntegration REQUIRED ImGui)
|
||
|
|
||
|
set_directory_properties(PROPERTIES CORRADE_USE_PEDANTIC_FLAGS ON)
|
||
|
|
||
|
corrade_add_resource(Assets assets.conf)
|
||
|
|
||
|
add_executable(MassBuilderSaveTool WIN32
|
||
|
main.cpp
|
||
|
SaveTool/SaveTool.h
|
||
|
SaveTool/SaveTool.cpp
|
||
|
SaveTool/SaveTool_drawAbout.cpp
|
||
|
SaveTool/SaveTool_drawMainMenu.cpp
|
||
|
SaveTool/SaveTool_MainManager.cpp
|
||
|
SaveTool/SaveTool_ProfileManager.cpp
|
||
|
MassBuilderManager/MassBuilderManager.h
|
||
|
MassBuilderManager/MassBuilderManager.cpp
|
||
|
ProfileManager/ProfileManager.h
|
||
|
ProfileManager/ProfileManager.cpp
|
||
|
Profile/Profile.h
|
||
|
Profile/Profile.cpp
|
||
|
MassManager/MassManager.h
|
||
|
MassManager/MassManager.cpp
|
||
|
Mass/Mass.h
|
||
|
Mass/Mass.cpp
|
||
|
Maps/LastMissionId.h
|
||
|
Maps/StoryProgress.h
|
||
|
FontAwesome/IconsFontAwesome5.h
|
||
|
FontAwesome/IconsFontAwesome5Brands.h
|
||
|
resource.rc
|
||
|
${Assets})
|
||
|
|
||
|
if(CMAKE_BUILD_TYPE STREQUAL Debug)
|
||
|
add_compile_definitions(MANAGER_DEBUG_BUILD)
|
||
|
endif()
|
||
|
|
||
|
target_link_options(MassBuilderSaveTool PRIVATE -static -static-libgcc -static-libstdc++)
|
||
|
|
||
|
target_link_libraries(MassBuilderSaveTool PRIVATE
|
||
|
Corrade::Containers
|
||
|
Corrade::Utility
|
||
|
Corrade::Interconnect
|
||
|
Corrade::Main
|
||
|
Magnum::Magnum
|
||
|
Magnum::GL
|
||
|
Magnum::Sdl2Application
|
||
|
MagnumIntegration::ImGui
|
||
|
efsw
|
||
|
zip
|
||
|
imm32
|
||
|
wtsapi32)
|