2020-12-30 12:16:15 +00:00
|
|
|
cmake_minimum_required(VERSION 3.13)
|
2020-11-11 20:06:52 +00:00
|
|
|
set(CMAKE_CXX_STANDARD 20)
|
|
|
|
project(Pomme CXX)
|
|
|
|
|
|
|
|
set(POMME_SRCDIR src)
|
|
|
|
|
|
|
|
set(POMME_SOURCES
|
|
|
|
${POMME_SRCDIR}/Pomme.cpp
|
|
|
|
${POMME_SRCDIR}/Pomme.h
|
|
|
|
${POMME_SRCDIR}/PommeDebug.cpp
|
|
|
|
${POMME_SRCDIR}/PommeDebug.h
|
|
|
|
${POMME_SRCDIR}/PommeEnums.h
|
|
|
|
${POMME_SRCDIR}/PommeFiles.h
|
|
|
|
${POMME_SRCDIR}/PommeGraphics.h
|
|
|
|
${POMME_SRCDIR}/PommeInit.h
|
|
|
|
${POMME_SRCDIR}/PommeInput.h
|
|
|
|
${POMME_SRCDIR}/PommeSound.h
|
|
|
|
${POMME_SRCDIR}/PommeTypes.h
|
|
|
|
${POMME_SRCDIR}/PommeVideo.h
|
|
|
|
${POMME_SRCDIR}/Files/Files.cpp
|
|
|
|
${POMME_SRCDIR}/Files/HostVolume.cpp
|
|
|
|
${POMME_SRCDIR}/Files/HostVolume.h
|
|
|
|
${POMME_SRCDIR}/Files/Resources.cpp
|
|
|
|
${POMME_SRCDIR}/Files/Volume.h
|
|
|
|
${POMME_SRCDIR}/Graphics/ARGBPixmap.cpp
|
|
|
|
${POMME_SRCDIR}/Graphics/Color.cpp
|
2021-02-22 19:19:57 +00:00
|
|
|
${POMME_SRCDIR}/Graphics/ColorManager.cpp
|
2020-11-11 20:06:52 +00:00
|
|
|
${POMME_SRCDIR}/Graphics/Graphics.cpp
|
|
|
|
${POMME_SRCDIR}/Graphics/PICT.cpp
|
|
|
|
${POMME_SRCDIR}/Graphics/SysFont.h
|
|
|
|
${POMME_SRCDIR}/Graphics/SystemPalettes.cpp
|
|
|
|
${POMME_SRCDIR}/Input/SDLInput.cpp
|
|
|
|
${POMME_SRCDIR}/Memory/Memory.cpp
|
|
|
|
${POMME_SRCDIR}/Sound/AIFF.cpp
|
|
|
|
${POMME_SRCDIR}/Sound/cmixer.cpp
|
|
|
|
${POMME_SRCDIR}/Sound/cmixer.h
|
|
|
|
${POMME_SRCDIR}/Sound/IMA4.cpp
|
|
|
|
${POMME_SRCDIR}/Sound/MACE.cpp
|
|
|
|
${POMME_SRCDIR}/Sound/SoundManager.cpp
|
|
|
|
${POMME_SRCDIR}/Sound/xlaw.cpp
|
2021-01-09 09:48:30 +00:00
|
|
|
${POMME_SRCDIR}/Text/TextUtilities.cpp
|
2020-11-11 20:06:52 +00:00
|
|
|
${POMME_SRCDIR}/Time/TimeManager.cpp
|
|
|
|
${POMME_SRCDIR}/Utilities/BigEndianIStream.cpp
|
|
|
|
${POMME_SRCDIR}/Utilities/FixedPool.h
|
|
|
|
${POMME_SRCDIR}/Utilities/GrowablePool.h
|
|
|
|
${POMME_SRCDIR}/Utilities/IEEEExtended.cpp
|
|
|
|
${POMME_SRCDIR}/Utilities/IEEEExtended.h
|
|
|
|
${POMME_SRCDIR}/Utilities/memstream.cpp
|
|
|
|
${POMME_SRCDIR}/Utilities/memstream.h
|
|
|
|
${POMME_SRCDIR}/Utilities/StringUtils.cpp
|
|
|
|
${POMME_SRCDIR}/Utilities/StringUtils.h
|
|
|
|
${POMME_SRCDIR}/Utilities/structpack.cpp
|
|
|
|
${POMME_SRCDIR}/Utilities/structpack.h
|
|
|
|
$<$<BOOL:${WIN32}>:${POMME_SRCDIR}/Platform/Windows/PommeWindows.cpp>
|
|
|
|
$<$<BOOL:${WIN32}>:${POMME_SRCDIR}/Platform/Windows/PommeWindows.h>
|
|
|
|
)
|
|
|
|
|
2021-02-18 20:12:34 +00:00
|
|
|
if (NOT(POMME_NO_VIDEO))
|
|
|
|
list(APPEND POMME_SOURCES
|
|
|
|
${POMME_SRCDIR}/Video/Cinepak.cpp
|
|
|
|
${POMME_SRCDIR}/Video/Cinepak.h
|
|
|
|
${POMME_SRCDIR}/Video/moov.cpp
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
|
|
|
if (NOT(POMME_NO_QD3D))
|
|
|
|
list(APPEND POMME_SOURCES
|
|
|
|
${POMME_SRCDIR}/QD3D/3DMFInternal.h
|
|
|
|
${POMME_SRCDIR}/QD3D/3DMFParser.cpp
|
|
|
|
${POMME_SRCDIR}/QD3D/QD3D.cpp
|
|
|
|
${POMME_SRCDIR}/QD3D/QD3D.h
|
|
|
|
${POMME_SRCDIR}/QD3D/QD3DMath.cpp
|
|
|
|
${POMME_SRCDIR}/QD3D/QD3DMath.h
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2020-11-11 20:06:52 +00:00
|
|
|
add_library(${PROJECT_NAME} ${POMME_SOURCES})
|
|
|
|
|
|
|
|
find_package(SDL2 REQUIRED)
|
|
|
|
|
2021-01-11 21:04:44 +00:00
|
|
|
add_compile_definitions(
|
|
|
|
"$<$<CONFIG:DEBUG>:_DEBUG>"
|
|
|
|
)
|
|
|
|
|
2020-11-11 20:06:52 +00:00
|
|
|
target_include_directories(${PROJECT_NAME} PRIVATE
|
|
|
|
${SDL2_INCLUDE_DIRS}
|
|
|
|
${POMME_SRCDIR}
|
|
|
|
)
|
|
|
|
|
|
|
|
if(MSVC)
|
2021-03-15 22:46:57 +00:00
|
|
|
# By default, MSVC may add /EHsc to CMAKE_CXX_FLAGS, which we don't want (we use /EHs below)
|
|
|
|
string(REPLACE "/EHsc" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
|
|
|
|
|
|
|
|
# By default, MSVC may add /W3 to CMAKE_CXX_FLAGS, which we don't want (we use /W4 below)
|
|
|
|
# Note that this is not required with "cmake_minimum_required(VERSION 3.15)" or later
|
|
|
|
string(REPLACE "/W3" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
|
|
|
|
|
2020-12-25 09:00:26 +00:00
|
|
|
# On Win32, we need NOGDI and NOUSER to be able to define some Mac functions
|
|
|
|
# whose names are otherwise taken by Windows APIs.
|
|
|
|
target_compile_definitions(${PROJECT_NAME} PRIVATE WIN32_LEAN_AND_MEAN NOGDI NOUSER)
|
|
|
|
|
2020-11-11 20:06:52 +00:00
|
|
|
target_compile_options(${PROJECT_NAME} PRIVATE
|
2021-03-15 22:46:57 +00:00
|
|
|
/EHs # synchronous exceptions; also, extern "C" functions may throw exceptions
|
2020-11-11 20:06:52 +00:00
|
|
|
/W4
|
2021-02-18 20:12:34 +00:00
|
|
|
/wd4068 # ignore unrecognized pragmas
|
2020-11-11 20:06:52 +00:00
|
|
|
/wd4100 # unreferenced formal parameter
|
|
|
|
/wd4201 # nonstandard extension
|
|
|
|
/wd4244 # conversion from double to float
|
|
|
|
/wd4458 # declaration of variable hides class member
|
2021-03-15 22:46:57 +00:00
|
|
|
/MP # multiprocessor compilation
|
2020-11-11 20:06:52 +00:00
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_options(${PROJECT_NAME} PRIVATE
|
|
|
|
-Wall
|
|
|
|
-Wextra
|
|
|
|
-Wshadow
|
|
|
|
-Wno-multichar
|
|
|
|
-Wno-unused-parameter
|
2021-02-18 20:12:34 +00:00
|
|
|
-Wno-unknown-pragmas
|
2020-11-11 20:06:52 +00:00
|
|
|
-fexceptions
|
|
|
|
)
|
|
|
|
endif()
|