2016-02-06 02:19:29 +00:00
|
|
|
cmake_minimum_required( VERSION 2.8.7 )
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2017-04-23 09:23:56 +00:00
|
|
|
include(precompiled_headers)
|
2016-04-10 11:08:54 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
if( COMMAND cmake_policy )
|
|
|
|
cmake_policy( SET CMP0003 NEW )
|
2016-02-20 10:38:30 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
include( CheckCXXSourceCompiles )
|
|
|
|
include( CheckFunctionExists )
|
|
|
|
include( CheckCXXCompilerFlag )
|
2016-10-02 20:05:26 +00:00
|
|
|
include( CheckIncludeFile )
|
|
|
|
include( CheckIncludeFiles )
|
2014-10-18 09:33:39 +00:00
|
|
|
include( CheckLibraryExists )
|
2014-06-15 18:36:49 +00:00
|
|
|
include( FindPkgConfig )
|
|
|
|
|
2020-02-09 13:51:50 +00:00
|
|
|
if( MSVC )
|
|
|
|
find_package( ZMusic )
|
|
|
|
else()
|
|
|
|
find_package( ZMusic REQUIRED )
|
|
|
|
endif()
|
|
|
|
|
2020-02-09 07:56:49 +00:00
|
|
|
if( MSVC AND NOT ZMUSIC_FOUND )
|
|
|
|
# Use prebuilt library
|
|
|
|
set( ZMUSIC_ROOT_PATH "${CMAKE_CURRENT_SOURCE_DIR}/../bin/windows/zmusic" )
|
|
|
|
set( ZMUSIC_INCLUDE_DIR ${ZMUSIC_ROOT_PATH}/include )
|
|
|
|
set( ZMUSIC_LIBRARIES zmusic )
|
|
|
|
if( ${ZDOOM_TARGET_ARCH} MATCHES "x86_64" )
|
|
|
|
link_directories( ${ZMUSIC_ROOT_PATH}/64bit )
|
|
|
|
else()
|
|
|
|
link_directories( ${ZMUSIC_ROOT_PATH}/32bit )
|
|
|
|
endif()
|
|
|
|
set( ZMUSIC_FOUND TRUE )
|
|
|
|
endif()
|
|
|
|
|
2014-06-25 23:23:41 +00:00
|
|
|
if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
2014-06-15 18:36:49 +00:00
|
|
|
option( NO_STRIP "Do not strip Release or MinSizeRel builds" )
|
|
|
|
# At least some versions of Xcode fail if you strip with the linker
|
|
|
|
# instead of the separate strip utility.
|
|
|
|
if( APPLE )
|
|
|
|
set( NO_STRIP ON )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2014-12-10 20:11:26 +00:00
|
|
|
if( APPLE )
|
|
|
|
option( OSX_COCOA_BACKEND "Use native Cocoa backend instead of SDL" ON )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-08-03 09:38:56 +00:00
|
|
|
|
2017-04-23 09:34:48 +00:00
|
|
|
if( ${ZDOOM_TARGET_ARCH} MATCHES "x86_64" )
|
2014-06-15 18:36:49 +00:00
|
|
|
set( X64 64 )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2019-02-04 09:40:32 +00:00
|
|
|
if( X64 OR ${ZDOOM_TARGET_ARCH} MATCHES "i386" )
|
|
|
|
add_definitions( -DARCH_IA32 )
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2014-01-18 23:10:48 +00:00
|
|
|
if( NOT ZDOOM_LIBS )
|
|
|
|
set( ZDOOM_LIBS "" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-01-18 23:10:48 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
if( WIN32 )
|
|
|
|
if( X64 )
|
|
|
|
set( WIN_TYPE Win64 )
|
|
|
|
set( XBITS x64 )
|
2016-02-06 02:19:29 +00:00
|
|
|
else()
|
2014-06-15 18:36:49 +00:00
|
|
|
set( WIN_TYPE Win32 )
|
|
|
|
set( XBITS x86 )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2018-02-23 08:21:42 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
add_definitions( -D_WIN32 )
|
2018-02-23 08:21:42 +00:00
|
|
|
|
|
|
|
|
2020-01-09 12:46:31 +00:00
|
|
|
if( MSVC ) # For VS 2017 and later.
|
2017-02-16 20:01:52 +00:00
|
|
|
# for modern Windows SDKs the DirectX headers should be available by default.
|
|
|
|
set( DX_dinput8_LIBRARY dinput8 )
|
2016-09-14 00:10:06 +00:00
|
|
|
else()
|
2018-02-23 08:21:42 +00:00
|
|
|
|
2017-02-16 20:01:52 +00:00
|
|
|
find_library( DX_dinput8_LIBRARY dinput8
|
|
|
|
PATHS ENV DXSDK_DIR
|
|
|
|
PATH_SUFFIXES Lib Lib/${XBITS} )
|
2020-01-09 12:46:31 +00:00
|
|
|
find_library( DX_dxguid_LIBRARY dxguid
|
|
|
|
PATHS ENV DXSDK_DIR
|
|
|
|
PATH_SUFFIXES Lib Lib/${XBITS} )
|
2017-02-16 20:01:52 +00:00
|
|
|
|
|
|
|
# Modern versions of the Windows SDK include dinput8.lib. Unfortunately,
|
|
|
|
# CMake cannot find these libraries via find_library.
|
|
|
|
if( NOT DX_dinput8_LIBRARY )
|
|
|
|
# If we got this far, assume dinput8.lib is in the system library path.
|
|
|
|
set( DX_dinput8_LIBRARY dinput8 )
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2020-01-09 12:46:31 +00:00
|
|
|
# Modern versions of the Windows SDK do NOT include dxguid.lib. Its contents
|
|
|
|
# were moved to dinput8.lib.
|
|
|
|
if( NOT DX_dxguid_LIBRARY )
|
|
|
|
message( STATUS "Could not find dxguid.lib. Build may fail on old Windows SDKs.")
|
2018-04-22 16:50:12 +00:00
|
|
|
endif()
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2016-09-14 00:10:06 +00:00
|
|
|
set( ZDOOM_LIBS
|
2017-01-21 10:50:53 +00:00
|
|
|
opengl32
|
2014-06-15 18:36:49 +00:00
|
|
|
wsock32
|
|
|
|
winmm
|
2016-09-14 00:10:06 +00:00
|
|
|
"${DX_dinput8_LIBRARY}"
|
2014-06-15 18:36:49 +00:00
|
|
|
ole32
|
|
|
|
user32
|
|
|
|
gdi32
|
|
|
|
comctl32
|
|
|
|
comdlg32
|
|
|
|
ws2_32
|
|
|
|
setupapi
|
2018-12-18 23:23:38 +00:00
|
|
|
oleaut32
|
|
|
|
dbghelp )
|
2016-11-24 05:47:53 +00:00
|
|
|
|
|
|
|
if( NOT ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} DelayImp )
|
|
|
|
endif()
|
|
|
|
|
2018-04-22 16:50:12 +00:00
|
|
|
if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
|
|
|
if( DX_dxguid_LIBRARY )
|
|
|
|
list( APPEND ZDOOM_LIBS "${DX_dxguid_LIBRARY}" )
|
|
|
|
endif()
|
2020-01-09 12:46:31 +00:00
|
|
|
list( APPEND ZDOOM_LIBS d3d9 )
|
2018-04-22 16:50:12 +00:00
|
|
|
endif()
|
2016-02-06 02:19:29 +00:00
|
|
|
else()
|
2014-06-15 18:36:49 +00:00
|
|
|
if( APPLE )
|
|
|
|
set( NO_GTK ON )
|
2016-11-12 23:32:09 +00:00
|
|
|
set( DYN_GTK OFF )
|
2016-04-09 07:51:19 +00:00
|
|
|
|
|
|
|
# Prevent inclusion of fp.h and FixMath.h from Carbon framework
|
|
|
|
# Declarations from these files are not used but cause the following conflicts:
|
|
|
|
# - redefinition of 'FixedToFloat' and 'FloatToFixed' macros
|
|
|
|
# - redefinition of 'pi' as different kind of symbol
|
|
|
|
add_definitions( -D__FP__ -D__FIXMATH__ )
|
2016-02-06 02:19:29 +00:00
|
|
|
else()
|
2014-06-15 18:36:49 +00:00
|
|
|
option( NO_GTK "Disable GTK+ dialogs (Not applicable to Windows)" )
|
2016-11-12 23:32:09 +00:00
|
|
|
option( DYN_GTK "Load GTK+ at runtime instead of compile time" ON )
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
# Use GTK+ for the IWAD picker, if available.
|
|
|
|
if( NOT NO_GTK )
|
2016-11-12 23:32:09 +00:00
|
|
|
pkg_check_modules( GTK3 gtk+-3.0 )
|
|
|
|
if( GTK3_FOUND )
|
|
|
|
if( NOT DYN_GTK )
|
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} ${GTK3_LIBRARIES} )
|
|
|
|
endif()
|
|
|
|
include_directories( ${GTK3_INCLUDE_DIRS} )
|
|
|
|
link_directories( ${GTK3_LIBRARY_DIRS} )
|
2016-02-06 02:19:29 +00:00
|
|
|
else()
|
2016-11-12 23:32:09 +00:00
|
|
|
pkg_check_modules( GTK2 gtk+-2.0 )
|
|
|
|
if( GTK2_FOUND )
|
|
|
|
if( NOT DYN_GTK )
|
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} ${GTK2_LIBRARIES} )
|
|
|
|
endif()
|
|
|
|
include_directories( ${GTK2_INCLUDE_DIRS} )
|
|
|
|
link_directories( ${GTK2_LIBRARY_DIRS} )
|
|
|
|
else()
|
|
|
|
set( NO_GTK ON )
|
|
|
|
endif()
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
endif()
|
2018-02-23 08:21:42 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
if( NO_GTK )
|
2016-11-12 23:32:09 +00:00
|
|
|
add_definitions( -DNO_GTK )
|
|
|
|
elseif( DYN_GTK )
|
|
|
|
add_definitions( -DDYN_GTK=1 )
|
|
|
|
else()
|
|
|
|
add_definitions( -DDYN_GTK=0 )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2016-11-12 23:32:09 +00:00
|
|
|
|
2014-12-16 21:20:54 +00:00
|
|
|
# Non-Windows version also needs SDL except native OS X backend
|
2014-08-03 09:38:56 +00:00
|
|
|
if( NOT APPLE OR NOT OSX_COCOA_BACKEND )
|
2014-12-16 21:20:54 +00:00
|
|
|
find_package( SDL2 REQUIRED )
|
|
|
|
include_directories( "${SDL2_INCLUDE_DIR}" )
|
2014-12-08 23:46:10 +00:00
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} "${SDL2_LIBRARY}" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
find_path( FPU_CONTROL_DIR fpu_control.h )
|
|
|
|
if( FPU_CONTROL_DIR )
|
|
|
|
include_directories( ${FPU_CONTROL_DIR} )
|
|
|
|
add_definitions( -DHAVE_FPU_CONTROL )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
if( NOT NO_OPENAL )
|
2017-04-17 15:05:09 +00:00
|
|
|
if ( NOT DYN_OPENAL ) # DYN_OPENAL uses local copies of the headers.
|
|
|
|
find_package( OpenAL )
|
|
|
|
mark_as_advanced(CLEAR OPENAL_INCLUDE_DIR)
|
|
|
|
if( OPENAL_INCLUDE_DIR )
|
|
|
|
include_directories( ${OPENAL_INCLUDE_DIR} )
|
2016-02-11 12:07:01 +00:00
|
|
|
mark_as_advanced(CLEAR OPENAL_LIBRARY)
|
|
|
|
if( OPENAL_LIBRARY )
|
|
|
|
set( ZDOOM_LIBS ${OPENAL_LIBRARY} ${ZDOOM_LIBS} )
|
|
|
|
else()
|
|
|
|
set( NO_OPENAL ON )
|
|
|
|
endif()
|
2017-04-17 15:05:09 +00:00
|
|
|
else()
|
|
|
|
set( NO_OPENAL ON )
|
2016-02-11 12:07:01 +00:00
|
|
|
endif()
|
|
|
|
else()
|
2017-04-17 15:05:09 +00:00
|
|
|
add_definitions( -DDYN_OPENAL )
|
2016-02-11 12:07:01 +00:00
|
|
|
endif()
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
if( NO_OPENAL )
|
|
|
|
add_definitions( -DNO_OPENAL=1 )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-19 13:34:40 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
# Decide on SSE setup
|
|
|
|
|
|
|
|
set( SSE_MATTERS NO )
|
|
|
|
|
2014-01-18 23:10:48 +00:00
|
|
|
# with global use of SSE 2 we do not need special handling for selected files
|
|
|
|
if (NOT ZDOOM_USE_SSE2)
|
|
|
|
# SSE only matters on 32-bit targets. We check compiler flags to know if we can do it.
|
|
|
|
if( CMAKE_SIZEOF_VOID_P MATCHES "4" AND NOT CMAKE_OSX_ARCHITECTURES MATCHES ppc )
|
|
|
|
CHECK_CXX_COMPILER_FLAG( "-msse2 -mfpmath=sse" CAN_DO_MFPMATH )
|
|
|
|
CHECK_CXX_COMPILER_FLAG( -arch:SSE2 CAN_DO_ARCHSSE2 )
|
|
|
|
if( CAN_DO_MFPMATH )
|
|
|
|
set( SSE1_ENABLE "-msse -mfpmath=sse" )
|
|
|
|
set( SSE2_ENABLE "-msse2 -mfpmath=sse" )
|
|
|
|
set( SSE_MATTERS YES )
|
|
|
|
elseif( CAN_DO_ARCHSSE2 )
|
|
|
|
set( SSE1_ENABLE -arch:SSE )
|
|
|
|
set( SSE2_ENABLE -arch:SSE2 )
|
|
|
|
set( SSE_MATTERS YES )
|
2016-02-20 10:38:30 +00:00
|
|
|
endif()
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2015-12-25 13:41:06 +00:00
|
|
|
if( X64 )
|
|
|
|
set( HAVE_MMX 1 )
|
|
|
|
else( X64 )
|
2016-01-08 08:18:16 +00:00
|
|
|
set( SAFE_CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS} )
|
2015-12-25 13:41:06 +00:00
|
|
|
|
|
|
|
if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
2016-01-08 08:18:16 +00:00
|
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mmmx")
|
2015-12-25 13:41:06 +00:00
|
|
|
endif( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
|
|
|
|
|
|
|
CHECK_CXX_SOURCE_COMPILES("#include <mmintrin.h>
|
|
|
|
int main(void) { __m64 v = _m_from_int(0); }"
|
|
|
|
HAVE_MMX)
|
|
|
|
|
2016-01-08 08:18:16 +00:00
|
|
|
set( CMAKE_CXX_FLAGS ${SAFE_CMAKE_CXX_FLAGS} )
|
2015-12-25 13:41:06 +00:00
|
|
|
endif( X64 )
|
|
|
|
|
2017-07-14 12:14:34 +00:00
|
|
|
CHECK_CXX_SOURCE_COMPILES("#include <ppl.h>
|
|
|
|
int main() { concurrency::parallel_for(0, 1, 1, [](int) { } ); }"
|
|
|
|
HAVE_PARALLEL_FOR)
|
|
|
|
|
|
|
|
if( NOT HAVE_PARALLEL_FOR )
|
|
|
|
CHECK_CXX_SOURCE_COMPILES("#include <dispatch/dispatch.h>
|
|
|
|
int main() { dispatch_apply(1, dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^(size_t) { }); }"
|
|
|
|
HAVE_DISPATCH_APPLY)
|
|
|
|
endif()
|
|
|
|
|
2017-03-09 23:08:09 +00:00
|
|
|
# Set up flags for MSVC
|
|
|
|
if (MSVC)
|
|
|
|
set( CMAKE_CXX_FLAGS "/MP ${CMAKE_CXX_FLAGS}" )
|
|
|
|
endif (MSVC)
|
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
# Set up flags for GCC
|
|
|
|
|
2014-06-25 23:23:41 +00:00
|
|
|
if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
2014-06-15 18:36:49 +00:00
|
|
|
if( PROFILE )
|
|
|
|
set( CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -pg" )
|
|
|
|
set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -pg" )
|
|
|
|
set( CMAKE_C_FLAGS_RELWITHDEBINFO "${CMAKE_C_FLAGS_RELWITHDEBINFO} -pg" )
|
|
|
|
set( CMAKE_CXX_FLAGS_RELWITHDEBINFO "${CMAKE_CXX_FLAGS_RELWITHDEBINFO} -pg" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2016-02-27 07:20:34 +00:00
|
|
|
|
2020-04-11 11:46:53 +00:00
|
|
|
#set( REL_CXX_FLAGS "-fno-rtti" )
|
2014-08-16 10:55:05 +00:00
|
|
|
if( NOT PROFILE AND NOT APPLE )
|
|
|
|
# On OS X frame pointers are required for exception handling, at least with Clang
|
2014-06-15 18:36:49 +00:00
|
|
|
set( REL_CXX_FLAGS "${REL_CXX_FLAGS} -fomit-frame-pointer" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
set( CMAKE_CXX_FLAGS_RELEASE "${REL_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELEASE}" )
|
|
|
|
set( CMAKE_CXX_FLAGS_MINSIZEREL "${REL_CXX_FLAGS} ${CMAKE_CXX_FLAGS_MINSIZEREL}" )
|
|
|
|
set( CMAKE_CXX_FLAGS_RELWITHDEBINFO "${REL_CXX_FLAGS} ${CMAKE_CXX_FLAGS_RELWITHDEBINFO}" )
|
|
|
|
|
2016-12-31 21:35:24 +00:00
|
|
|
# Support for the GCC/Clang sanitizers.
|
|
|
|
set( WITH_ASAN 0 CACHE BOOL "Enable the Address Sanitizer")
|
|
|
|
if( NOT CMAKE_COMPILER_IS_GNUCXX )
|
|
|
|
set( WITH_MSAN 0 CACHE BOOL "Enable the Memory Sanitizer")
|
|
|
|
endif( NOT CMAKE_COMPILER_IS_GNUCXX )
|
|
|
|
set( WITH_UBSAN 0 CACHE BOOL "Enable the Undefined Behavior Sanitizer")
|
|
|
|
if( WITH_MSAN )
|
|
|
|
if ( WITH_ASAN OR WITH_UBSAN )
|
|
|
|
message( SEND_ERROR "You can't use MSAN with either ASAN or UBSAN." )
|
|
|
|
endif ( WITH_ASAN OR WITH_UBSAN )
|
|
|
|
endif( WITH_MSAN )
|
|
|
|
|
|
|
|
set( SANITIZER_FLAG "" )
|
|
|
|
if( WITH_ASAN )
|
|
|
|
set( SANITIZER_FLAG "-fsanitize=address" )
|
|
|
|
if ( WITH_UBSAN )
|
|
|
|
set( SANITIZER_FLAG "${SANITIZER_FLAG},undefined" )
|
|
|
|
endif( WITH_UBSAN )
|
|
|
|
elseif( WITH_MSAN )
|
|
|
|
set( SANITIZER_FLAG "-fsanitize=memory" )
|
|
|
|
elseif( WITH_UBSAN )
|
|
|
|
set( SANITIZER_FLAG "-fsanitize=undefined" )
|
|
|
|
endif( WITH_ASAN )
|
|
|
|
|
|
|
|
set( CMAKE_CXX_FLAGS "${SANITIZER_FLAG} ${CMAKE_CXX_FLAGS}" )
|
|
|
|
set( CMAKE_C_FLAGS "${SANITIZER_FLAG} ${CMAKE_C_FLAGS}" )
|
2018-06-03 13:05:14 +00:00
|
|
|
set( CMAKE_EXE_LINKER_FLAGS "${SANITIZER_FLAG} ${CMAKE_EXE_LINKER_FLAGS}" )
|
2016-12-31 21:35:24 +00:00
|
|
|
|
2016-02-27 21:15:29 +00:00
|
|
|
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "4.5")
|
2016-02-06 02:19:29 +00:00
|
|
|
set( CMAKE_C_FLAGS "-Wno-unused-result ${CMAKE_C_FLAGS}" )
|
2016-01-25 04:03:59 +00:00
|
|
|
set( CMAKE_CXX_FLAGS "-Wno-unused-result ${CMAKE_CXX_FLAGS}" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2016-08-07 18:55:16 +00:00
|
|
|
if( CMAKE_CXX_COMPILER_ID STREQUAL "Clang" )
|
|
|
|
if( APPLE OR CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "3.6" )
|
|
|
|
set( CMAKE_CXX_FLAGS "-Wno-inconsistent-missing-override ${CMAKE_CXX_FLAGS}" )
|
|
|
|
endif()
|
2016-07-11 05:17:45 +00:00
|
|
|
endif()
|
2016-03-13 05:34:35 +00:00
|
|
|
set( CMAKE_C_FLAGS "-Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-missing-field-initializers -ffp-contract=off ${CMAKE_C_FLAGS}" )
|
|
|
|
set( CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-unused -Wno-unused-parameter -Wno-missing-field-initializers -ffp-contract=off ${CMAKE_CXX_FLAGS}" )
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2017-03-09 23:08:09 +00:00
|
|
|
# ARM processors (Raspberry Pi, et al) - enable ARM NEON support.
|
2017-03-25 05:15:17 +00:00
|
|
|
if(${CMAKE_SYSTEM_PROCESSOR} MATCHES "arm")
|
|
|
|
set (USE_ARMV8 0 CACHE BOOL "Use ARMv8 instructions - Raspberry Pi 3")
|
|
|
|
if (USE_ARMV8)
|
2017-10-25 13:31:37 +00:00
|
|
|
set( CMAKE_CXX_FLAGS "-mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mtune=cortex-a53 -mhard-float -DNO_SSE ${CMAKE_CXX_FLAGS}" )
|
2017-03-25 05:15:17 +00:00
|
|
|
else ()
|
2017-10-25 13:31:37 +00:00
|
|
|
set( CMAKE_CXX_FLAGS "-mcpu=cortex-a7 -mfpu=neon-vfpv4 -mtune=cortex-a7 -mhard-float -DNO_SSE ${CMAKE_CXX_FLAGS}" )
|
2017-03-25 05:15:17 +00:00
|
|
|
endif ()
|
2017-03-09 23:08:09 +00:00
|
|
|
endif ()
|
|
|
|
|
2017-04-23 09:34:48 +00:00
|
|
|
if( NOT X64 AND NOT CAN_DO_MFPMATH )
|
2019-09-24 08:53:18 +00:00
|
|
|
set( CMAKE_C_FLAGS "-DNO_SSE ${CMAKE_C_FLAGS}" )
|
2017-04-23 09:34:48 +00:00
|
|
|
set( CMAKE_CXX_FLAGS "-DNO_SSE ${CMAKE_CXX_FLAGS}" )
|
|
|
|
endif()
|
|
|
|
|
2016-02-27 07:20:34 +00:00
|
|
|
# Use the highest C++ standard available since VS2015 compiles with C++14
|
|
|
|
# but we only require C++11. The recommended way to do this in CMake is to
|
|
|
|
# probably to use target_compile_features, but I don't feel like maintaining
|
|
|
|
# a list of features we use.
|
2016-03-13 05:34:35 +00:00
|
|
|
CHECK_CXX_COMPILER_FLAG( "-std=gnu++14" CAN_DO_CPP14 )
|
2016-02-27 07:20:34 +00:00
|
|
|
if ( CAN_DO_CPP14 )
|
2016-03-13 05:34:35 +00:00
|
|
|
set ( CMAKE_CXX_FLAGS "-std=gnu++14 ${CMAKE_CXX_FLAGS}" )
|
2016-02-27 07:20:34 +00:00
|
|
|
else ()
|
2016-03-13 05:34:35 +00:00
|
|
|
CHECK_CXX_COMPILER_FLAG( "-std=gnu++1y" CAN_DO_CPP1Y )
|
2016-02-27 07:20:34 +00:00
|
|
|
if ( CAN_DO_CPP1Y )
|
2016-03-13 05:34:35 +00:00
|
|
|
set ( CMAKE_CXX_FLAGS "-std=gnu++1y ${CMAKE_CXX_FLAGS}" )
|
2016-02-27 07:20:34 +00:00
|
|
|
else ()
|
2016-03-13 05:34:35 +00:00
|
|
|
CHECK_CXX_COMPILER_FLAG( "-std=gnu++11" CAN_DO_CPP11 )
|
2016-02-27 07:20:34 +00:00
|
|
|
if ( CAN_DO_CPP11 )
|
2016-03-13 05:34:35 +00:00
|
|
|
set ( CMAKE_CXX_FLAGS "-std=gnu++11 ${CMAKE_CXX_FLAGS}" )
|
2016-02-27 07:20:34 +00:00
|
|
|
else ()
|
2016-03-13 05:34:35 +00:00
|
|
|
CHECK_CXX_COMPILER_FLAG( "-std=gnu++0x" CAN_DO_CPP0X )
|
2016-02-27 07:20:34 +00:00
|
|
|
if ( CAN_DO_CPP0X )
|
2016-03-13 05:34:35 +00:00
|
|
|
set ( CMAKE_CXX_FLAGS "-std=gnu++0x ${CMAKE_CXX_FLAGS}" )
|
2016-02-27 07:20:34 +00:00
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
endif ()
|
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
# Remove extra warnings when using the official DirectX headers.
|
|
|
|
# Also, TDM-GCC 4.4.0 no longer accepts glibc-style printf formats as valid,
|
|
|
|
# which is a royal pain. The previous version I had been using was fine with them.
|
2019-04-05 18:52:43 +00:00
|
|
|
# MinGW: switch to the Windows Unicode API.
|
2014-06-15 18:36:49 +00:00
|
|
|
if( WIN32 )
|
|
|
|
set( CMAKE_CXX_FLAGS "-Wno-unknown-pragmas -Wno-comment -Wno-format ${CMAKE_CXX_FLAGS}" )
|
2019-04-05 18:52:43 +00:00
|
|
|
set( CMAKE_CXX_FLAGS "-D_UNICODE -DUNICODE ${CMAKE_CXX_FLAGS}" )
|
2019-07-15 10:29:15 +00:00
|
|
|
set( CMAKE_CXX_FLAGS "-D_WIN32_WINNT=0x0600 ${CMAKE_CXX_FLAGS}" )
|
2019-04-05 18:52:43 +00:00
|
|
|
set( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -municode" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2018-02-10 12:55:53 +00:00
|
|
|
# Detect FreeBSD and add flags
|
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "FreeBSD")
|
|
|
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC" )
|
|
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC" )
|
|
|
|
endif()
|
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
if( NOT NO_STRIP )
|
|
|
|
set (CMAKE_EXE_LINKER_FLAGS_RELEASE "${CMAKE_EXE_LINKER_FLAGS_RELEASE} -s" )
|
|
|
|
set (CMAKE_EXE_LINKER_FLAGS_MINSIZEREL "${CMAKE_EXE_LINKER_FLAGS_MINSIZEREL} -s" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2018-03-09 10:53:41 +00:00
|
|
|
# Check for thread_local keyword, it's optional at the moment
|
|
|
|
|
|
|
|
CHECK_CXX_SOURCE_COMPILES("thread_local int i; int main() { i = 0; }"
|
|
|
|
HAVE_THREAD_LOCAL)
|
|
|
|
|
|
|
|
if( NOT HAVE_THREAD_LOCAL )
|
2018-04-13 13:10:33 +00:00
|
|
|
message( SEND_ERROR "C++ compiler doesn't support thread_local storage duration specifier" )
|
2018-03-09 10:53:41 +00:00
|
|
|
endif()
|
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
# Check for functions that may or may not exist.
|
|
|
|
|
|
|
|
CHECK_FUNCTION_EXISTS( filelength FILELENGTH_EXISTS )
|
|
|
|
if( FILELENGTH_EXISTS )
|
|
|
|
add_definitions( -DHAVE_FILELENGTH=1 )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
CHECK_FUNCTION_EXISTS( strupr STRUPR_EXISTS )
|
|
|
|
if( NOT STRUPR_EXISTS )
|
|
|
|
add_definitions( -DNEED_STRUPR=1 )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2019-10-05 11:47:36 +00:00
|
|
|
require_stricmp()
|
|
|
|
require_strnicmp()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
if( NOT MSVC )
|
|
|
|
add_definitions( -D__forceinline=inline )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
if( UNIX )
|
|
|
|
CHECK_LIBRARY_EXISTS( rt clock_gettime "" CLOCK_GETTIME_IN_RT )
|
|
|
|
if( NOT CLOCK_GETTIME_IN_RT )
|
|
|
|
CHECK_FUNCTION_EXISTS( clock_gettime CLOCK_GETTIME_EXISTS )
|
|
|
|
if( NOT CLOCK_GETTIME_EXISTS )
|
|
|
|
message( STATUS "Could not find clock_gettime. Timing statistics will not be available." )
|
|
|
|
add_definitions( -DNO_CLOCK_GETTIME )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2016-02-20 10:38:30 +00:00
|
|
|
else()
|
2014-06-15 18:36:49 +00:00
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} rt )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
# Flags
|
|
|
|
|
|
|
|
# Update gitinfo.h
|
|
|
|
|
|
|
|
add_custom_target( revision_check ALL
|
2020-02-02 05:14:37 +00:00
|
|
|
COMMAND "${CMAKE_COMMAND}" -P "${CMAKE_SOURCE_DIR}/tools/updaterevision/UpdateRevision.cmake" src/gitinfo.h
|
2014-06-15 18:36:49 +00:00
|
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
2020-02-02 05:14:37 +00:00
|
|
|
)
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
# Libraries ZDoom needs
|
|
|
|
|
2020-02-09 07:56:49 +00:00
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} "${ZLIB_LIBRARIES}" "${JPEG_LIBRARIES}" "${BZIP2_LIBRARIES}" "${CMAKE_DL_LIBS}" )
|
2019-03-24 13:33:04 +00:00
|
|
|
if (HAVE_VULKAN)
|
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} "glslang" "SPIRV" "OGLCompiler")
|
|
|
|
endif()
|
2019-09-29 11:33:09 +00:00
|
|
|
include_directories( "${ZLIB_INCLUDE_DIR}" "${BZIP2_INCLUDE_DIR}" "${LZMA_INCLUDE_DIR}" "${JPEG_INCLUDE_DIR}" "${ZMUSIC_INCLUDE_DIR}" )
|
2019-02-04 09:14:52 +00:00
|
|
|
|
|
|
|
if( ${HAVE_VM_JIT} )
|
|
|
|
add_definitions( -DHAVE_VM_JIT )
|
|
|
|
include_directories( "${ASMJIT_INCLUDE_DIR}" )
|
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} "${ASMJIT_LIBRARIES}")
|
|
|
|
endif()
|
2014-01-18 23:10:48 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
# Start defining source files for ZDoom
|
2014-01-18 23:10:48 +00:00
|
|
|
set( PLAT_WIN32_SOURCES
|
|
|
|
win32/hardware.cpp
|
|
|
|
win32/i_crash.cpp
|
|
|
|
win32/i_input.cpp
|
|
|
|
win32/i_keyboard.cpp
|
|
|
|
win32/i_mouse.cpp
|
|
|
|
win32/i_dijoy.cpp
|
|
|
|
win32/i_rawps2.cpp
|
|
|
|
win32/i_xinput.cpp
|
|
|
|
win32/i_main.cpp
|
|
|
|
win32/i_system.cpp
|
2016-09-03 10:00:08 +00:00
|
|
|
win32/i_specialpaths.cpp
|
2014-01-18 23:10:48 +00:00
|
|
|
win32/st_start.cpp
|
2019-10-01 21:00:13 +00:00
|
|
|
win32/st_start_util.cpp
|
2018-06-24 18:55:05 +00:00
|
|
|
win32/gl_sysfb.cpp
|
2018-06-24 19:26:32 +00:00
|
|
|
win32/base_sysfb.cpp
|
2018-06-24 18:47:00 +00:00
|
|
|
win32/win32basevideo.cpp
|
2019-05-22 04:29:52 +00:00
|
|
|
win32/win32glvideo.cpp
|
|
|
|
win32/win32polyvideo.cpp)
|
2019-03-24 13:33:04 +00:00
|
|
|
|
|
|
|
if (HAVE_VULKAN)
|
|
|
|
set (PLAT_WIN32_SOURCES ${PLAT_WIN32_SOURCES} win32/win32vulkanvideo.cpp )
|
|
|
|
endif()
|
|
|
|
|
2014-12-15 15:40:30 +00:00
|
|
|
set( PLAT_POSIX_SOURCES
|
2020-01-26 08:49:20 +00:00
|
|
|
posix/i_steam.cpp
|
|
|
|
posix/i_system_posix.cpp )
|
2014-01-18 23:10:48 +00:00
|
|
|
set( PLAT_SDL_SOURCES
|
2014-12-18 09:52:29 +00:00
|
|
|
posix/sdl/crashcatcher.c
|
|
|
|
posix/sdl/hardware.cpp
|
|
|
|
posix/sdl/i_gui.cpp
|
|
|
|
posix/sdl/i_input.cpp
|
|
|
|
posix/sdl/i_joystick.cpp
|
|
|
|
posix/sdl/i_main.cpp
|
2015-12-27 10:05:04 +00:00
|
|
|
posix/sdl/i_system.cpp
|
2016-01-12 10:23:45 +00:00
|
|
|
posix/sdl/sdlglvideo.cpp
|
2015-12-29 13:19:42 +00:00
|
|
|
posix/sdl/st_start.cpp )
|
2016-09-03 10:00:08 +00:00
|
|
|
set( PLAT_UNIX_SOURCES
|
2016-11-12 23:32:09 +00:00
|
|
|
posix/unix/i_specialpaths.cpp
|
2018-01-24 04:31:48 +00:00
|
|
|
posix/unix/gtk_dialogs.cpp )
|
2014-12-18 09:52:29 +00:00
|
|
|
set( PLAT_OSX_SOURCES
|
|
|
|
posix/osx/iwadpicker_cocoa.mm
|
2016-09-03 10:00:08 +00:00
|
|
|
posix/osx/i_specialpaths.mm
|
2014-12-18 09:52:29 +00:00
|
|
|
posix/osx/zdoom.icns )
|
2014-08-03 09:38:56 +00:00
|
|
|
set( PLAT_COCOA_SOURCES
|
2014-12-28 14:35:00 +00:00
|
|
|
posix/cocoa/i_input.mm
|
2014-12-18 09:52:29 +00:00
|
|
|
posix/cocoa/i_joystick.cpp
|
2014-12-28 14:35:00 +00:00
|
|
|
posix/cocoa/i_main.mm
|
2015-12-27 10:05:04 +00:00
|
|
|
posix/cocoa/i_system.mm
|
2015-12-29 13:19:42 +00:00
|
|
|
posix/cocoa/i_video.mm
|
|
|
|
posix/cocoa/st_console.mm
|
|
|
|
posix/cocoa/st_start.mm )
|
2014-08-03 09:38:56 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
if( WIN32 )
|
|
|
|
set( SYSTEM_SOURCES_DIR win32 )
|
2014-01-18 23:10:48 +00:00
|
|
|
set( SYSTEM_SOURCES ${PLAT_WIN32_SOURCES} )
|
2016-09-03 10:00:08 +00:00
|
|
|
set( OTHER_SYSTEM_SOURCES ${PLAT_POSIX_SOURCES} ${PLAT_SDL_SOURCES} ${PLAT_OSX_SOURCES} ${PLAT_COCOA_SOURCES} ${PLAT_UNIX_SOURCES} )
|
2018-02-23 08:21:42 +00:00
|
|
|
|
2016-11-23 02:22:39 +00:00
|
|
|
set( SYSTEM_SOURCES ${SYSTEM_SOURCES} win32/zdoom.rc )
|
2014-12-14 09:29:28 +00:00
|
|
|
elseif( APPLE )
|
|
|
|
if( OSX_COCOA_BACKEND )
|
2014-12-18 09:52:29 +00:00
|
|
|
set( SYSTEM_SOURCES_DIR posix posix/cocoa )
|
2014-12-14 09:29:28 +00:00
|
|
|
set( SYSTEM_SOURCES ${PLAT_COCOA_SOURCES} )
|
2016-09-03 10:00:08 +00:00
|
|
|
set( OTHER_SYSTEM_SOURCES ${PLAT_WIN32_SOURCES} ${PLAT_SDL_SOURCES} ${PLAT_UNIX_SOURCES} )
|
2016-02-06 02:19:29 +00:00
|
|
|
else()
|
2014-12-18 09:52:29 +00:00
|
|
|
set( SYSTEM_SOURCES_DIR posix posix/sdl )
|
2014-12-14 09:29:28 +00:00
|
|
|
set( SYSTEM_SOURCES ${PLAT_SDL_SOURCES} )
|
2014-12-18 09:52:29 +00:00
|
|
|
set( PLAT_OSX_SOURCES ${PLAT_OSX_SOURCES} posix/sdl/i_system.mm )
|
2016-09-03 10:00:08 +00:00
|
|
|
set( OTHER_SYSTEM_SOURCES ${PLAT_WIN32_SOURCES} ${PLAT_COCOA_SOURCES} ${PLAT_UNIX_SOURCES} )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-12-14 09:29:28 +00:00
|
|
|
|
2017-04-16 23:06:54 +00:00
|
|
|
set( SYSTEM_SOURCES ${SYSTEM_SOURCES} ${PLAT_POSIX_SOURCES} ${PLAT_OSX_SOURCES} )
|
2014-12-14 09:29:28 +00:00
|
|
|
|
2014-12-18 09:52:29 +00:00
|
|
|
set_source_files_properties( posix/osx/zdoom.icns PROPERTIES MACOSX_PACKAGE_LOCATION Resources )
|
2016-03-13 05:34:35 +00:00
|
|
|
set_source_files_properties( posix/osx/iwadpicker_cocoa.mm PROPERTIES COMPILE_FLAGS -fobjc-exceptions )
|
2016-02-06 02:19:29 +00:00
|
|
|
else()
|
2014-12-18 09:52:29 +00:00
|
|
|
set( SYSTEM_SOURCES_DIR posix posix/sdl )
|
2016-09-03 10:00:08 +00:00
|
|
|
set( SYSTEM_SOURCES ${PLAT_POSIX_SOURCES} ${PLAT_SDL_SOURCES} ${PLAT_UNIX_SOURCES} )
|
2014-12-18 09:52:29 +00:00
|
|
|
set( OTHER_SYSTEM_SOURCES ${PLAT_WIN32_SOURCES} ${PLAT_OSX_SOURCES} ${PLAT_COCOA_SOURCES} )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2015-12-25 13:41:06 +00:00
|
|
|
if( HAVE_MMX )
|
|
|
|
add_definitions( -DHAVE_MMX=1 )
|
|
|
|
|
|
|
|
set( SYSTEM_SOURCES ${SYSTEM_SOURCES}
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/hires/hqnx_asm/hq2x_asm.cpp
|
|
|
|
common/textures/hires/hqnx_asm/hq3x_asm.cpp
|
|
|
|
common/textures/hires/hqnx_asm/hq4x_asm.cpp
|
|
|
|
common/textures/hires/hqnx_asm/hqnx_asm_Image.cpp)
|
2015-12-25 13:41:06 +00:00
|
|
|
|
|
|
|
if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
|
|
|
set_source_files_properties(
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/hires/hqnx_asm/hq2x_asm.cpp
|
|
|
|
common/textures/hires/hqnx_asm/hq3x_asm.cpp
|
|
|
|
common/textures/hires/hqnx_asm/hq4x_asm.cpp
|
|
|
|
common/textures/hires/hqresize.cpp
|
2015-12-25 13:41:06 +00:00
|
|
|
PROPERTIES COMPILE_FLAGS "-mmmx" )
|
|
|
|
endif( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
|
|
|
endif( HAVE_MMX )
|
2017-01-22 09:14:48 +00:00
|
|
|
|
2017-07-14 12:14:34 +00:00
|
|
|
if( HAVE_PARALLEL_FOR )
|
|
|
|
add_definitions( -DHAVE_PARALLEL_FOR=1 )
|
|
|
|
elseif( HAVE_DISPATCH_APPLY )
|
|
|
|
add_definitions( -DHAVE_DISPATCH_APPLY=1 )
|
|
|
|
else()
|
|
|
|
option( NO_OPENMP "Disable usage of OpenMP" OFF )
|
|
|
|
|
|
|
|
if( NOT NO_OPENMP )
|
|
|
|
include( FindOpenMP )
|
|
|
|
|
|
|
|
if( OPENMP_FOUND )
|
|
|
|
set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${OpenMP_C_FLAGS}" )
|
|
|
|
set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}" )
|
|
|
|
endif( OPENMP_FOUND )
|
|
|
|
endif( NOT NO_OPENMP )
|
|
|
|
endif()
|
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.c ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.h
|
2019-02-02 00:14:51 +00:00
|
|
|
COMMAND lemon -C${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/gamedata/xlat/xlat_parser.y
|
|
|
|
DEPENDS lemon ${CMAKE_CURRENT_SOURCE_DIR}/gamedata/xlat/xlat_parser.y )
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2015-04-28 07:40:57 +00:00
|
|
|
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/zcc-parse.c ${CMAKE_CURRENT_BINARY_DIR}/zcc-parse.h
|
2016-10-12 17:22:33 +00:00
|
|
|
COMMAND lemon -C${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR}/scripting/zscript/zcc-parse.lemon
|
|
|
|
DEPENDS lemon ${CMAKE_CURRENT_SOURCE_DIR}/scripting/zscript/zcc-parse.lemon )
|
2014-12-22 02:43:24 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
add_custom_command( OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/sc_man_scanner.h
|
2020-04-11 11:46:15 +00:00
|
|
|
COMMAND re2c --no-generation-date -s -o ${CMAKE_CURRENT_BINARY_DIR}/sc_man_scanner.h ${CMAKE_CURRENT_SOURCE_DIR}/common/engine/sc_man_scanner.re
|
|
|
|
DEPENDS re2c ${CMAKE_CURRENT_SOURCE_DIR}/common/engine/sc_man_scanner.re )
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
include_directories( ${CMAKE_CURRENT_BINARY_DIR} )
|
|
|
|
|
2018-03-16 13:47:23 +00:00
|
|
|
option( SEND_ANON_STATS "Enable sending of anonymous hardware statistics" ON )
|
|
|
|
|
|
|
|
if( NOT SEND_ANON_STATS )
|
|
|
|
add_definitions( -DNO_SEND_STATS )
|
|
|
|
endif()
|
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
# Project files should be aware of the header files. We can GLOB these since
|
|
|
|
# there's generally a new cpp for every header so this file will get changed
|
|
|
|
file( GLOB HEADER_FILES
|
2019-07-14 12:39:21 +00:00
|
|
|
console/*.h
|
2019-07-14 11:24:18 +00:00
|
|
|
playsim/*.h
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/bots/*.h
|
|
|
|
playsim/fragglescript/*.h
|
|
|
|
playsim/mapthinkers/*.h
|
2017-01-20 21:59:31 +00:00
|
|
|
g_statusbar/*.h
|
2019-02-01 17:13:12 +00:00
|
|
|
gamedata/*.h
|
2019-02-01 17:31:57 +00:00
|
|
|
gamedata/resourcefiles/*.h
|
2019-02-17 10:43:04 +00:00
|
|
|
gamedata/fonts/*.h
|
2019-02-02 00:14:51 +00:00
|
|
|
gamedata/xlat/*.h
|
2014-06-15 18:36:49 +00:00
|
|
|
intermission/*.h
|
2018-12-27 16:11:10 +00:00
|
|
|
maploader/*.h
|
2014-06-15 18:36:49 +00:00
|
|
|
menu/*.h
|
2019-07-14 14:07:18 +00:00
|
|
|
sound/*.h
|
|
|
|
sound/backend/*.h*
|
2014-12-15 15:40:30 +00:00
|
|
|
posix/*.h
|
2014-12-18 09:52:29 +00:00
|
|
|
posix/cocoa/*.h
|
|
|
|
posix/sdl/*.h
|
2018-04-23 15:46:18 +00:00
|
|
|
win32/*.h
|
2014-06-15 18:36:49 +00:00
|
|
|
r_data/*.h
|
2017-11-25 12:19:00 +00:00
|
|
|
r_data/models/*.h
|
2020-04-11 16:30:22 +00:00
|
|
|
common/audio/sound/thirdparty/*.h
|
|
|
|
common/audio/sound/*.h
|
2020-04-11 16:26:09 +00:00
|
|
|
common/audio/music/*.h*
|
2020-04-11 16:11:43 +00:00
|
|
|
common/console/*.h
|
2020-04-11 10:53:45 +00:00
|
|
|
common/utility/*.h
|
2020-04-11 11:43:47 +00:00
|
|
|
common/engine/*.h
|
2020-04-11 17:11:59 +00:00
|
|
|
common/fonts/*.h
|
2020-04-11 17:21:41 +00:00
|
|
|
common/objects/*.h
|
2020-04-11 11:36:23 +00:00
|
|
|
common/filesystem/*.h
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/hires/hqnx/*.h
|
|
|
|
common/textures/hires/hqnx_asm/*.h
|
|
|
|
common/textures/hires/xbr/*.h
|
2020-04-11 10:52:48 +00:00
|
|
|
common/thirdparty/*.h
|
|
|
|
common/thirdparty/rapidjson/*.h
|
2020-04-11 17:21:41 +00:00
|
|
|
common/thirdparty/math/*h
|
|
|
|
common/scripting/core/*h
|
|
|
|
common/scripting/vm/*h
|
|
|
|
common/scripting/jit/*h
|
|
|
|
common/scripting/interface/*.h
|
2019-01-31 19:33:52 +00:00
|
|
|
utility/*.h
|
2016-10-12 17:22:33 +00:00
|
|
|
scripting/*.h
|
2017-02-08 11:24:08 +00:00
|
|
|
scripting/backend/*.h
|
2016-10-12 22:53:59 +00:00
|
|
|
scripting/decorate/*.h
|
|
|
|
scripting/zscript/*.h
|
2018-03-11 17:32:00 +00:00
|
|
|
sound/midisources/*.h
|
2019-07-14 19:09:49 +00:00
|
|
|
rendering/*.h
|
2019-02-23 17:08:57 +00:00
|
|
|
rendering/2d/*.h
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/swrenderer/*.h
|
|
|
|
rendering/swrenderer/textures/*.h
|
|
|
|
rendering/swrenderer/drawers/*.h
|
|
|
|
rendering/swrenderer/scene/*.h
|
|
|
|
rendering/swrenderer/segments/*.h
|
|
|
|
rendering/swrenderer/line/*.h
|
|
|
|
rendering/swrenderer/plane/*.h
|
|
|
|
rendering/swrenderer/things/*.h
|
|
|
|
rendering/swrenderer/viewport/*.h
|
|
|
|
rendering/polyrenderer/*.h
|
|
|
|
rendering/polyrenderer/math/*.h
|
|
|
|
rendering/polyrenderer/drawers/*.h
|
2019-05-22 04:29:52 +00:00
|
|
|
rendering/polyrenderer/backend/*.h
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/hwrenderer/data/*.h
|
|
|
|
rendering/hwrenderer/dynlights/*.h
|
|
|
|
rendering/hwrenderer/models/*.h
|
|
|
|
rendering/hwrenderer/postprocessing/*.h
|
|
|
|
rendering/hwrenderer/scene/*.h
|
|
|
|
rendering/hwrenderer/textures/*.h
|
|
|
|
rendering/hwrenderer/utility/*.h
|
2019-02-20 20:21:57 +00:00
|
|
|
rendering/vulkan/*.h
|
|
|
|
rendering/vulkan/system/*.h
|
2019-02-21 21:49:00 +00:00
|
|
|
rendering/vulkan/renderer/*.h
|
|
|
|
rendering/vulkan/shaders/*.h
|
2019-02-20 20:21:57 +00:00
|
|
|
rendering/vulkan/textures/*.h
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/gl/*.h
|
|
|
|
rendering/gl/models/*.h
|
|
|
|
rendering/gl/renderer/*.h
|
|
|
|
rendering/gl/scene/*.h
|
|
|
|
rendering/gl/shaders/*.h
|
|
|
|
rendering/gl/system/*.h
|
|
|
|
rendering/gl/textures/*.h
|
|
|
|
rendering/gl_load/*.h
|
2014-06-15 18:36:49 +00:00
|
|
|
*.h
|
|
|
|
)
|
|
|
|
|
2017-03-09 23:43:36 +00:00
|
|
|
set ( SWRENDER_SOURCES
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/swrenderer/r_swcolormaps.cpp
|
|
|
|
rendering/swrenderer/r_swrenderer.cpp
|
|
|
|
rendering/swrenderer/r_memory.cpp
|
|
|
|
rendering/swrenderer/r_renderthread.cpp
|
|
|
|
rendering/swrenderer/drawers/r_draw.cpp
|
|
|
|
rendering/swrenderer/drawers/r_draw_pal.cpp
|
|
|
|
rendering/swrenderer/drawers/r_draw_rgba.cpp
|
|
|
|
rendering/swrenderer/drawers/r_thread.cpp
|
|
|
|
rendering/swrenderer/scene/r_3dfloors.cpp
|
|
|
|
rendering/swrenderer/scene/r_light.cpp
|
|
|
|
rendering/swrenderer/scene/r_opaque_pass.cpp
|
|
|
|
rendering/swrenderer/scene/r_portal.cpp
|
|
|
|
rendering/swrenderer/scene/r_scene.cpp
|
|
|
|
rendering/swrenderer/scene/r_translucent_pass.cpp
|
|
|
|
rendering/swrenderer/viewport/r_drawerargs.cpp
|
|
|
|
rendering/swrenderer/viewport/r_skydrawer.cpp
|
|
|
|
rendering/swrenderer/viewport/r_spandrawer.cpp
|
|
|
|
rendering/swrenderer/viewport/r_spritedrawer.cpp
|
|
|
|
rendering/swrenderer/viewport/r_viewport.cpp
|
|
|
|
rendering/swrenderer/viewport/r_walldrawer.cpp
|
|
|
|
rendering/swrenderer/line/r_line.cpp
|
|
|
|
rendering/swrenderer/line/r_farclip_line.cpp
|
|
|
|
rendering/swrenderer/line/r_walldraw.cpp
|
|
|
|
rendering/swrenderer/line/r_wallsetup.cpp
|
|
|
|
rendering/swrenderer/line/r_fogboundary.cpp
|
|
|
|
rendering/swrenderer/line/r_renderdrawsegment.cpp
|
|
|
|
rendering/swrenderer/segments/r_clipsegment.cpp
|
|
|
|
rendering/swrenderer/segments/r_drawsegment.cpp
|
|
|
|
rendering/swrenderer/segments/r_portalsegment.cpp
|
|
|
|
rendering/swrenderer/things/r_visiblesprite.cpp
|
|
|
|
rendering/swrenderer/things/r_visiblespritelist.cpp
|
|
|
|
rendering/swrenderer/things/r_voxel.cpp
|
|
|
|
rendering/swrenderer/things/r_particle.cpp
|
|
|
|
rendering/swrenderer/things/r_playersprite.cpp
|
|
|
|
rendering/swrenderer/things/r_sprite.cpp
|
|
|
|
rendering/swrenderer/things/r_wallsprite.cpp
|
|
|
|
rendering/swrenderer/things/r_decal.cpp
|
|
|
|
rendering/swrenderer/things/r_model.cpp
|
|
|
|
rendering/swrenderer/plane/r_visibleplane.cpp
|
|
|
|
rendering/swrenderer/plane/r_visibleplanelist.cpp
|
|
|
|
rendering/swrenderer/plane/r_skyplane.cpp
|
|
|
|
rendering/swrenderer/plane/r_planerenderer.cpp
|
|
|
|
rendering/swrenderer/plane/r_flatplane.cpp
|
|
|
|
rendering/swrenderer/plane/r_slopeplane.cpp
|
2017-03-09 23:43:36 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set( POLYRENDER_SOURCES
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/polyrenderer/drawers/poly_triangle.cpp
|
2019-12-15 16:14:23 +00:00
|
|
|
rendering/polyrenderer/drawers/poly_thread.cpp
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/polyrenderer/drawers/screen_triangle.cpp
|
2019-12-15 16:14:23 +00:00
|
|
|
rendering/polyrenderer/drawers/screen_scanline_setup.cpp
|
|
|
|
rendering/polyrenderer/drawers/screen_shader.cpp
|
|
|
|
rendering/polyrenderer/drawers/screen_blend.cpp
|
2016-04-10 11:54:42 +00:00
|
|
|
)
|
2017-03-09 23:43:36 +00:00
|
|
|
|
|
|
|
# These files will be flagged as "headers" so that they appear in project files
|
|
|
|
# without being compiled.
|
|
|
|
set( NOT_COMPILED_SOURCE_FILES
|
|
|
|
${OTHER_SYSTEM_SOURCES}
|
|
|
|
${SWRENDER_SOURCES}
|
|
|
|
${POLYRENDER_SOURCES}
|
|
|
|
sc_man_scanner.h
|
2020-04-11 11:46:15 +00:00
|
|
|
common/engine/sc_man_scanner.re
|
2017-03-09 23:43:36 +00:00
|
|
|
g_statusbar/sbarinfo_commands.cpp
|
2019-02-02 00:14:51 +00:00
|
|
|
gamedata/xlat/xlat_parser.y
|
2017-03-09 23:43:36 +00:00
|
|
|
xlat_parser.c
|
|
|
|
xlat_parser.h
|
|
|
|
scripting/zscript/zcc-parse.lemon
|
|
|
|
zcc-parse.c
|
|
|
|
zcc-parse.h
|
2019-10-23 07:39:23 +00:00
|
|
|
win32/zdoom.natvis
|
2017-03-09 23:43:36 +00:00
|
|
|
)
|
|
|
|
|
2019-02-04 09:14:52 +00:00
|
|
|
set( VM_JIT_SOURCES
|
2020-04-11 17:21:41 +00:00
|
|
|
common/scripting/jit/jit.cpp
|
|
|
|
common/scripting/jit/jit_runtime.cpp
|
|
|
|
common/scripting/jit/jit_call.cpp
|
|
|
|
common/scripting/jit/jit_flow.cpp
|
|
|
|
common/scripting/jit/jit_load.cpp
|
|
|
|
common/scripting/jit/jit_math.cpp
|
|
|
|
common/scripting/jit/jit_move.cpp
|
|
|
|
common/scripting/jit/jit_store.cpp
|
2019-02-04 09:14:52 +00:00
|
|
|
)
|
|
|
|
|
2016-04-10 11:54:42 +00:00
|
|
|
# This is disabled for now because I cannot find a way to give the .pch file a different name.
|
2018-04-26 22:28:30 +00:00
|
|
|
# Visual C++ 2015 seems hell-bent on only allowing one .pch file with the same name as the executable.
|
2016-04-10 11:54:42 +00:00
|
|
|
#enable_precompiled_headers( g_pch2.h FASTMATH_PCH_SOURCES )
|
|
|
|
|
|
|
|
# Enable fast math for some sources
|
|
|
|
set( FASTMATH_SOURCES
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/swrenderer/r_all.cpp
|
|
|
|
rendering/swrenderer/r_swscene.cpp
|
|
|
|
rendering/polyrenderer/poly_all.cpp
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/hires/hqnx/init.cpp
|
|
|
|
common/textures/hires/hqnx/hq2x.cpp
|
|
|
|
common/textures/hires/hqnx/hq3x.cpp
|
|
|
|
common/textures/hires/hqnx/hq4x.cpp
|
|
|
|
common/textures/hires/xbr/xbrz.cpp
|
|
|
|
common/textures/hires/xbr/xbrz_old.cpp
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/gl_load/gl_load.c
|
|
|
|
rendering/hwrenderer/postprocessing/hw_postprocess_cvars.cpp
|
|
|
|
rendering/hwrenderer/postprocessing/hw_postprocessshader.cpp
|
|
|
|
rendering/hwrenderer/dynlights/hw_dynlightdata.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_bsp.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_fakeflat.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_decal.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_drawinfo.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_drawlist.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_clipper.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_flats.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_portal.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_renderhacks.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_sky.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_skyportal.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_sprites.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_spritelight.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_walls.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_walls_vertex.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_weapon.cpp
|
2017-11-25 12:19:00 +00:00
|
|
|
r_data/models/models.cpp
|
2020-04-11 10:53:45 +00:00
|
|
|
common/utility/matrix.cpp
|
2019-09-23 07:26:37 +00:00
|
|
|
)
|
2019-03-24 13:33:04 +00:00
|
|
|
|
|
|
|
#Vulkan stuff must go into a separate list later because it needs to be disabled for some platforms
|
|
|
|
set (VULKAN_SOURCES
|
2019-02-20 20:21:57 +00:00
|
|
|
rendering/vulkan/system/vk_device.cpp
|
|
|
|
rendering/vulkan/system/vk_swapchain.cpp
|
2019-02-20 23:25:51 +00:00
|
|
|
rendering/vulkan/system/vk_builders.cpp
|
2019-02-20 20:21:57 +00:00
|
|
|
rendering/vulkan/system/vk_framebuffer.cpp
|
2019-02-21 11:31:14 +00:00
|
|
|
rendering/vulkan/system/vk_buffers.cpp
|
2019-02-21 21:49:00 +00:00
|
|
|
rendering/vulkan/renderer/vk_renderstate.cpp
|
2019-02-26 10:27:29 +00:00
|
|
|
rendering/vulkan/renderer/vk_renderpass.cpp
|
2019-07-28 14:28:43 +00:00
|
|
|
rendering/vulkan/renderer/vk_streambuffer.cpp
|
2019-03-05 03:59:17 +00:00
|
|
|
rendering/vulkan/renderer/vk_postprocess.cpp
|
|
|
|
rendering/vulkan/renderer/vk_renderbuffers.cpp
|
2019-02-21 21:49:00 +00:00
|
|
|
rendering/vulkan/shaders/vk_shader.cpp
|
2019-02-20 20:21:57 +00:00
|
|
|
rendering/vulkan/textures/vk_samplers.cpp
|
|
|
|
rendering/vulkan/textures/vk_hwtexture.cpp
|
2019-05-16 16:26:47 +00:00
|
|
|
rendering/vulkan/textures/vk_imagetransition.cpp
|
2019-02-20 20:21:57 +00:00
|
|
|
rendering/vulkan/thirdparty/volk/volk.c
|
|
|
|
rendering/vulkan/thirdparty/vk_mem_alloc/vk_mem_alloc.cpp
|
2016-02-12 11:51:09 +00:00
|
|
|
)
|
2016-04-10 11:08:54 +00:00
|
|
|
|
2019-03-24 13:33:04 +00:00
|
|
|
if (HAVE_VULKAN)
|
|
|
|
set (FASTMATH_SOURCES ${FASTMATH_SOURCES} ${VULKAN_SOURCES})
|
|
|
|
endif()
|
|
|
|
|
2019-05-22 04:29:52 +00:00
|
|
|
set (POLYBACKEND_SOURCES
|
|
|
|
rendering/polyrenderer/backend/poly_framebuffer.cpp
|
|
|
|
rendering/polyrenderer/backend/poly_buffers.cpp
|
|
|
|
rendering/polyrenderer/backend/poly_hwtexture.cpp
|
|
|
|
rendering/polyrenderer/backend/poly_renderstate.cpp
|
|
|
|
)
|
|
|
|
set (FASTMATH_SOURCES ${FASTMATH_SOURCES} ${POLYBACKEND_SOURCES})
|
|
|
|
|
2016-04-10 11:08:54 +00:00
|
|
|
set (PCH_SOURCES
|
2014-06-15 18:36:49 +00:00
|
|
|
am_map.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/bots/b_bot.cpp
|
|
|
|
playsim/bots/b_func.cpp
|
|
|
|
playsim/bots/b_game.cpp
|
|
|
|
playsim/bots/b_move.cpp
|
|
|
|
playsim/bots/b_think.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
bbannouncer.cpp
|
2020-04-11 16:13:50 +00:00
|
|
|
console/c_cmds.cpp
|
2019-07-14 12:39:21 +00:00
|
|
|
console/c_console.cpp
|
|
|
|
console/c_functions.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
ct_chat.cpp
|
|
|
|
d_iwad.cpp
|
|
|
|
d_main.cpp
|
2018-07-21 11:21:37 +00:00
|
|
|
d_anonstats.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
d_net.cpp
|
|
|
|
d_netinfo.cpp
|
|
|
|
d_protocol.cpp
|
|
|
|
doomstat.cpp
|
2019-01-31 01:05:16 +00:00
|
|
|
g_cvars.cpp
|
|
|
|
g_dumpinfo.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
g_game.cpp
|
|
|
|
g_hub.cpp
|
|
|
|
g_level.cpp
|
|
|
|
gameconfigfile.cpp
|
|
|
|
gitinfo.cpp
|
|
|
|
hu_scores.cpp
|
|
|
|
i_net.cpp
|
|
|
|
m_cheat.cpp
|
|
|
|
m_joy.cpp
|
|
|
|
m_misc.cpp
|
2019-07-14 19:09:49 +00:00
|
|
|
playsim/p_acs.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/p_actionfunctions.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
p_conversation.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/p_destructible.cpp
|
|
|
|
playsim/p_effect.cpp
|
|
|
|
playsim/p_enemy.cpp
|
|
|
|
playsim/p_interaction.cpp
|
|
|
|
playsim/p_lnspec.cpp
|
|
|
|
playsim/p_map.cpp
|
|
|
|
playsim/p_maputl.cpp
|
|
|
|
playsim/p_mobj.cpp
|
2018-12-19 17:41:53 +00:00
|
|
|
p_openmap.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/p_pspr.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
p_saveg.cpp
|
2018-12-28 08:17:10 +00:00
|
|
|
p_setup.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/p_spec.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
p_states.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/p_things.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
p_tick.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/p_user.cpp
|
2019-07-14 19:09:49 +00:00
|
|
|
rendering/r_utility.cpp
|
|
|
|
rendering/r_sky.cpp
|
|
|
|
rendering/r_videoscale.cpp
|
2019-07-14 15:48:55 +00:00
|
|
|
sound/s_advsound.cpp
|
2019-12-08 20:45:45 +00:00
|
|
|
sound/s_reverbedit.cpp
|
2019-07-14 15:48:55 +00:00
|
|
|
sound/s_sndseq.cpp
|
2019-12-08 12:28:52 +00:00
|
|
|
sound/s_doomsound.cpp
|
2020-04-11 17:27:11 +00:00
|
|
|
serializer_doom.cpp
|
2018-11-24 12:06:01 +00:00
|
|
|
scriptutil.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
st_stuff.cpp
|
2019-07-14 19:09:49 +00:00
|
|
|
rendering/v_framebuffer.cpp
|
|
|
|
r_data/v_palette.cpp
|
|
|
|
rendering/v_video.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
wi_stuff.cpp
|
2019-02-01 17:13:12 +00:00
|
|
|
gamedata/a_keys.cpp
|
|
|
|
gamedata/a_weapons.cpp
|
2019-02-01 18:20:58 +00:00
|
|
|
gamedata/decallib.cpp
|
|
|
|
gamedata/g_mapinfo.cpp
|
|
|
|
gamedata/g_skill.cpp
|
|
|
|
gamedata/gi.cpp
|
|
|
|
gamedata/umapinfo.cpp
|
2019-02-01 18:48:17 +00:00
|
|
|
gamedata/d_dehacked.cpp
|
|
|
|
gamedata/g_doomedmap.cpp
|
|
|
|
gamedata/info.cpp
|
|
|
|
gamedata/keysections.cpp
|
|
|
|
gamedata/p_terrain.cpp
|
2019-02-23 17:57:49 +00:00
|
|
|
gamedata/statistics.cpp
|
2019-02-01 18:48:17 +00:00
|
|
|
gamedata/teaminfo.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/mapthinkers/a_decalfx.cpp
|
|
|
|
playsim/mapthinkers/a_doors.cpp
|
|
|
|
playsim/mapthinkers/a_lightning.cpp
|
|
|
|
playsim/mapthinkers/a_quake.cpp
|
|
|
|
playsim/mapthinkers/a_ceiling.cpp
|
|
|
|
playsim/mapthinkers/a_floor.cpp
|
|
|
|
playsim/mapthinkers/a_lights.cpp
|
|
|
|
playsim/mapthinkers/a_lighttransfer.cpp
|
|
|
|
playsim/mapthinkers/a_pillar.cpp
|
|
|
|
playsim/mapthinkers/a_plats.cpp
|
|
|
|
playsim/mapthinkers/a_pusher.cpp
|
|
|
|
playsim/mapthinkers/a_scroll.cpp
|
|
|
|
playsim/mapthinkers/dsectoreffect.cpp
|
2019-07-14 11:24:18 +00:00
|
|
|
playsim/a_pickups.cpp
|
|
|
|
playsim/a_action.cpp
|
|
|
|
playsim/a_decals.cpp
|
|
|
|
playsim/a_dynlight.cpp
|
|
|
|
playsim/a_flashfader.cpp
|
|
|
|
playsim/a_morph.cpp
|
|
|
|
playsim/a_specialspot.cpp
|
|
|
|
playsim/p_secnodes.cpp
|
|
|
|
playsim/p_sectors.cpp
|
|
|
|
playsim/p_sight.cpp
|
|
|
|
playsim/p_switch.cpp
|
|
|
|
playsim/p_tags.cpp
|
|
|
|
playsim/p_teleport.cpp
|
|
|
|
playsim/actorptrselect.cpp
|
|
|
|
playsim/dthinker.cpp
|
|
|
|
playsim/p_3dfloors.cpp
|
|
|
|
playsim/p_3dmidtex.cpp
|
|
|
|
playsim/p_linkedsectors.cpp
|
|
|
|
playsim/p_trace.cpp
|
|
|
|
playsim/po_man.cpp
|
|
|
|
playsim/portal.cpp
|
2019-01-31 01:31:57 +00:00
|
|
|
g_statusbar/hudmessages.cpp
|
|
|
|
g_statusbar/shared_hud.cpp
|
2017-01-20 21:59:31 +00:00
|
|
|
g_statusbar/sbarinfo.cpp
|
|
|
|
g_statusbar/sbar_mugshot.cpp
|
|
|
|
g_statusbar/shared_sbar.cpp
|
2019-02-23 17:08:57 +00:00
|
|
|
rendering/2d/f_wipe.cpp
|
|
|
|
rendering/2d/v_2ddrawer.cpp
|
|
|
|
rendering/2d/v_drawtext.cpp
|
|
|
|
rendering/2d/v_blend.cpp
|
|
|
|
rendering/2d/v_draw.cpp
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/gl/renderer/gl_renderer.cpp
|
|
|
|
rendering/gl/renderer/gl_renderstate.cpp
|
|
|
|
rendering/gl/renderer/gl_renderbuffers.cpp
|
|
|
|
rendering/gl/renderer/gl_postprocess.cpp
|
|
|
|
rendering/gl/renderer/gl_postprocessstate.cpp
|
|
|
|
rendering/gl/renderer/gl_stereo3d.cpp
|
|
|
|
rendering/gl/renderer/gl_scene.cpp
|
|
|
|
rendering/gl/shaders/gl_shader.cpp
|
|
|
|
rendering/gl/shaders/gl_shaderprogram.cpp
|
|
|
|
rendering/gl_load/gl_interface.cpp
|
|
|
|
rendering/gl/system/gl_framebuffer.cpp
|
|
|
|
rendering/gl/system/gl_debug.cpp
|
|
|
|
rendering/gl/system/gl_buffers.cpp
|
|
|
|
rendering/gl/textures/gl_hwtexture.cpp
|
|
|
|
rendering/gl/textures/gl_samplers.cpp
|
|
|
|
rendering/hwrenderer/data/hw_vertexbuilder.cpp
|
|
|
|
rendering/hwrenderer/data/flatvertices.cpp
|
|
|
|
rendering/hwrenderer/data/hw_viewpointbuffer.cpp
|
|
|
|
rendering/hwrenderer/dynlights/hw_aabbtree.cpp
|
|
|
|
rendering/hwrenderer/dynlights/hw_shadowmap.cpp
|
|
|
|
rendering/hwrenderer/dynlights/hw_lightbuffer.cpp
|
|
|
|
rendering/hwrenderer/models/hw_models.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_skydome.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_drawlistadd.cpp
|
|
|
|
rendering/hwrenderer/scene/hw_renderstate.cpp
|
|
|
|
rendering/hwrenderer/postprocessing/hw_postprocess.cpp
|
|
|
|
rendering/hwrenderer/postprocessing/hw_postprocess_cvars.cpp
|
|
|
|
rendering/hwrenderer/postprocessing/hw_postprocessshader.cpp
|
|
|
|
rendering/hwrenderer/textures/hw_precache.cpp
|
|
|
|
rendering/hwrenderer/utility/hw_clock.cpp
|
|
|
|
rendering/hwrenderer/utility/hw_cvars.cpp
|
|
|
|
rendering/hwrenderer/utility/hw_draw2d.cpp
|
|
|
|
rendering/hwrenderer/utility/hw_lighting.cpp
|
|
|
|
rendering/hwrenderer/utility/hw_shaderpatcher.cpp
|
|
|
|
rendering/hwrenderer/utility/hw_vrmodes.cpp
|
2018-12-27 16:11:10 +00:00
|
|
|
maploader/edata.cpp
|
2019-01-24 19:27:34 +00:00
|
|
|
maploader/specials.cpp
|
2018-12-27 16:11:10 +00:00
|
|
|
maploader/maploader.cpp
|
|
|
|
maploader/slopes.cpp
|
|
|
|
maploader/glnodes.cpp
|
|
|
|
maploader/udmf.cpp
|
2019-02-22 18:07:58 +00:00
|
|
|
maploader/usdf.cpp
|
|
|
|
maploader/strifedialogue.cpp
|
2018-12-28 14:05:05 +00:00
|
|
|
maploader/polyobjects.cpp
|
2018-12-28 14:51:32 +00:00
|
|
|
maploader/renderinfo.cpp
|
2018-12-28 22:14:11 +00:00
|
|
|
maploader/compatibility.cpp
|
2019-11-10 20:28:01 +00:00
|
|
|
maploader/postprocessor.cpp
|
2017-03-09 19:56:33 +00:00
|
|
|
menu/joystickmenu.cpp
|
|
|
|
menu/loadsavemenu.cpp
|
|
|
|
menu/menu.cpp
|
|
|
|
menu/menudef.cpp
|
|
|
|
menu/messagebox.cpp
|
|
|
|
menu/optionmenu.cpp
|
|
|
|
menu/playermenu.cpp
|
2018-08-01 15:53:58 +00:00
|
|
|
menu/resolutionmenu.cpp
|
2019-02-01 17:31:57 +00:00
|
|
|
gamedata/textures/animations.cpp
|
|
|
|
gamedata/textures/anim_switches.cpp
|
2020-04-11 17:04:02 +00:00
|
|
|
gamedata/textures/buildloader.cpp
|
2019-02-17 10:43:04 +00:00
|
|
|
gamedata/fonts/v_text.cpp
|
2019-02-02 00:14:51 +00:00
|
|
|
gamedata/p_xlat.cpp
|
|
|
|
gamedata/xlat/parse_xlat.cpp
|
|
|
|
gamedata/xlat/parsecontext.cpp
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/fragglescript/t_func.cpp
|
|
|
|
playsim/fragglescript/t_load.cpp
|
|
|
|
playsim/fragglescript/t_oper.cpp
|
|
|
|
playsim/fragglescript/t_parse.cpp
|
|
|
|
playsim/fragglescript/t_prepro.cpp
|
|
|
|
playsim/fragglescript/t_script.cpp
|
|
|
|
playsim/fragglescript/t_spec.cpp
|
|
|
|
playsim/fragglescript/t_variable.cpp
|
|
|
|
playsim/fragglescript/t_cmd.cpp
|
2017-03-09 19:56:33 +00:00
|
|
|
intermission/intermission.cpp
|
|
|
|
intermission/intermission_parse.cpp
|
|
|
|
r_data/colormaps.cpp
|
2019-02-23 17:57:49 +00:00
|
|
|
r_data/cycler.cpp
|
2018-04-02 10:28:20 +00:00
|
|
|
r_data/gldefs.cpp
|
2018-04-02 07:51:51 +00:00
|
|
|
r_data/a_dynlightdata.cpp
|
2017-03-09 19:56:33 +00:00
|
|
|
r_data/r_translate.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
r_data/sprites.cpp
|
2018-04-01 22:39:04 +00:00
|
|
|
r_data/portalgroups.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
r_data/voxels.cpp
|
2018-12-10 23:01:45 +00:00
|
|
|
r_data/r_canvastexture.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
r_data/r_interpolate.cpp
|
2017-06-04 00:00:53 +00:00
|
|
|
r_data/r_vanillatrans.cpp
|
2018-11-06 23:53:44 +00:00
|
|
|
r_data/r_sections.cpp
|
2017-11-25 12:19:00 +00:00
|
|
|
r_data/models/models_md3.cpp
|
|
|
|
r_data/models/models_md2.cpp
|
2017-11-25 12:22:59 +00:00
|
|
|
r_data/models/models_voxel.cpp
|
2018-05-13 00:58:25 +00:00
|
|
|
r_data/models/models_ue1.cpp
|
2018-06-03 07:26:42 +00:00
|
|
|
r_data/models/models_obj.cpp
|
2018-12-04 22:12:16 +00:00
|
|
|
scripting/vmiterators.cpp
|
2018-11-25 10:34:50 +00:00
|
|
|
scripting/vmthunks.cpp
|
2018-12-04 23:21:16 +00:00
|
|
|
scripting/vmthunks_actors.cpp
|
2016-10-12 17:22:33 +00:00
|
|
|
scripting/thingdef.cpp
|
|
|
|
scripting/thingdef_data.cpp
|
|
|
|
scripting/thingdef_properties.cpp
|
2017-02-08 11:24:08 +00:00
|
|
|
scripting/backend/codegen.cpp
|
|
|
|
scripting/backend/dynarrays.cpp
|
|
|
|
scripting/backend/vmbuilder.cpp
|
2016-10-12 17:22:33 +00:00
|
|
|
scripting/decorate/olddecorations.cpp
|
|
|
|
scripting/decorate/thingdef_exp.cpp
|
|
|
|
scripting/decorate/thingdef_parse.cpp
|
|
|
|
scripting/decorate/thingdef_states.cpp
|
|
|
|
scripting/zscript/ast.cpp
|
|
|
|
scripting/zscript/zcc_compile.cpp
|
|
|
|
scripting/zscript/zcc_parser.cpp
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering/swrenderer/textures/r_swtexture.cpp
|
|
|
|
rendering/swrenderer/textures/warptexture.cpp
|
|
|
|
rendering/swrenderer/textures/swcanvastexture.cpp
|
2017-01-22 00:33:53 +00:00
|
|
|
events.cpp
|
2020-04-11 16:30:22 +00:00
|
|
|
common/audio/sound/i_sound.cpp
|
|
|
|
common/audio/sound/oalsound.cpp
|
|
|
|
common/audio/sound/s_environment.cpp
|
|
|
|
common/audio/sound/s_sound.cpp
|
2020-04-11 16:26:09 +00:00
|
|
|
common/audio/music/music_midi_base.cpp
|
|
|
|
common/audio/music/music.cpp
|
|
|
|
common/audio/music/i_music.cpp
|
|
|
|
common/audio/music/i_soundfont.cpp
|
|
|
|
common/audio/music/music_config.cpp
|
2020-04-11 11:12:45 +00:00
|
|
|
common/thirdparty/sfmt/SFMT.cpp
|
2020-04-11 17:11:59 +00:00
|
|
|
common/fonts/singlelumpfont.cpp
|
|
|
|
common/fonts/singlepicfont.cpp
|
|
|
|
common/fonts/specialfont.cpp
|
|
|
|
common/fonts/font.cpp
|
|
|
|
common/fonts/hexfont.cpp
|
|
|
|
common/fonts/v_font.cpp
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/hw_ihwtexture.cpp
|
2020-04-11 17:07:08 +00:00
|
|
|
common/textures/hw_material.cpp
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/bitmap.cpp
|
2020-04-11 16:18:32 +00:00
|
|
|
common/textures/m_png.cpp
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/texture.cpp
|
|
|
|
common/textures/image.cpp
|
|
|
|
common/textures/imagetexture.cpp
|
|
|
|
common/textures/texturemanager.cpp
|
|
|
|
common/textures/multipatchtexturebuilder.cpp
|
|
|
|
common/textures/skyboxtexture.cpp
|
2020-04-11 17:10:22 +00:00
|
|
|
common/textures/animtexture.cpp
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/formats/automaptexture.cpp
|
|
|
|
common/textures/formats/brightmaptexture.cpp
|
|
|
|
common/textures/formats/buildtexture.cpp
|
|
|
|
common/textures/formats/ddstexture.cpp
|
|
|
|
common/textures/formats/flattexture.cpp
|
|
|
|
common/textures/formats/fontchars.cpp
|
|
|
|
common/textures/formats/imgztexture.cpp
|
|
|
|
common/textures/formats/jpegtexture.cpp
|
|
|
|
common/textures/formats/md5check.cpp
|
|
|
|
common/textures/formats/multipatchtexture.cpp
|
|
|
|
common/textures/formats/patchtexture.cpp
|
|
|
|
common/textures/formats/pcxtexture.cpp
|
|
|
|
common/textures/formats/pngtexture.cpp
|
|
|
|
common/textures/formats/rawpagetexture.cpp
|
|
|
|
common/textures/formats/emptytexture.cpp
|
|
|
|
common/textures/formats/shadertexture.cpp
|
|
|
|
common/textures/formats/tgatexture.cpp
|
|
|
|
common/textures/formats/stbtexture.cpp
|
|
|
|
common/textures/hires/hqresize.cpp
|
2020-04-11 16:11:43 +00:00
|
|
|
common/console/c_commandline.cpp
|
|
|
|
common/console/c_buttons.cpp
|
|
|
|
common/console/c_bind.cpp
|
|
|
|
common/console/c_enginecmds.cpp
|
|
|
|
common/console/c_consolebuffer.cpp
|
|
|
|
common/console/c_cvars.cpp
|
|
|
|
common/console/c_dispatch.cpp
|
|
|
|
common/console/c_expr.cpp
|
2020-04-11 10:56:55 +00:00
|
|
|
common/utility/engineerrors.cpp
|
|
|
|
common/utility/i_module.cpp
|
|
|
|
common/utility/m_alloc.cpp
|
|
|
|
common/utility/utf8.cpp
|
2020-04-11 11:04:17 +00:00
|
|
|
common/utility/palette.cpp
|
2020-04-11 10:59:55 +00:00
|
|
|
common/utility/files.cpp
|
|
|
|
common/utility/files_decompress.cpp
|
2020-04-11 11:12:45 +00:00
|
|
|
common/utility/memarena.cpp
|
|
|
|
common/utility/cmdlib.cpp
|
|
|
|
common/utility/configfile.cpp
|
|
|
|
common/utility/i_time.cpp
|
|
|
|
common/utility/m_argv.cpp
|
|
|
|
common/utility/s_playlist.cpp
|
|
|
|
common/utility/zstrformat.cpp
|
2020-04-11 11:43:47 +00:00
|
|
|
common/utility/name.cpp
|
2020-04-11 11:12:45 +00:00
|
|
|
common/thirdparty/md5.cpp
|
|
|
|
common/thirdparty/superfasthash.cpp
|
2020-04-11 11:36:23 +00:00
|
|
|
common/filesystem/filesystem.cpp
|
|
|
|
common/filesystem/ancientzip.cpp
|
|
|
|
common/filesystem/file_7z.cpp
|
|
|
|
common/filesystem/file_grp.cpp
|
|
|
|
common/filesystem/file_lump.cpp
|
|
|
|
common/filesystem/file_rff.cpp
|
|
|
|
common/filesystem/file_wad.cpp
|
|
|
|
common/filesystem/file_zip.cpp
|
|
|
|
common/filesystem/file_pak.cpp
|
|
|
|
common/filesystem/file_whres.cpp
|
|
|
|
common/filesystem/file_directory.cpp
|
|
|
|
common/filesystem/resourcefile.cpp
|
2020-04-11 11:46:15 +00:00
|
|
|
common/engine/sc_man.cpp
|
|
|
|
common/engine/palettecontainer.cpp
|
2020-04-11 16:13:17 +00:00
|
|
|
common/engine/stringtable.cpp
|
2020-04-11 16:22:21 +00:00
|
|
|
common/engine/i_interface.cpp
|
2020-04-11 17:02:14 +00:00
|
|
|
common/engine/renderstyle.cpp
|
|
|
|
common/engine/v_colortables.cpp
|
2020-04-11 17:28:30 +00:00
|
|
|
common/engine/serializer.cpp
|
2020-04-11 17:21:41 +00:00
|
|
|
common/objects/dobject.cpp
|
|
|
|
common/objects/dobjgc.cpp
|
|
|
|
common/objects/dobjtype.cpp
|
2020-04-11 17:29:18 +00:00
|
|
|
common/scripting/core/dictionary.cpp
|
2020-04-11 17:21:41 +00:00
|
|
|
common/scripting/core/symbols.cpp
|
|
|
|
common/scripting/core/types.cpp
|
|
|
|
common/scripting/core/scopebarrier.cpp
|
|
|
|
common/scripting/core/vmdisasm.cpp
|
|
|
|
common/scripting/vm/vmexec.cpp
|
|
|
|
common/scripting/vm/vmframe.cpp
|
|
|
|
common/scripting/interface/stringformat.cpp
|
2020-04-11 11:36:23 +00:00
|
|
|
|
2019-01-31 19:33:52 +00:00
|
|
|
utility/m_random.cpp
|
|
|
|
utility/nodebuilder/nodebuild.cpp
|
|
|
|
utility/nodebuilder/nodebuild_classify_nosse2.cpp
|
|
|
|
utility/nodebuilder/nodebuild_events.cpp
|
|
|
|
utility/nodebuilder/nodebuild_extract.cpp
|
|
|
|
utility/nodebuilder/nodebuild_gl.cpp
|
|
|
|
utility/nodebuilder/nodebuild_utility.cpp
|
2019-02-22 18:48:18 +00:00
|
|
|
utility/stats.cpp
|
2019-02-01 00:18:32 +00:00
|
|
|
utility/m_bbox.cpp
|
|
|
|
utility/v_collection.cpp
|
2016-04-10 11:08:54 +00:00
|
|
|
)
|
2017-03-09 19:56:33 +00:00
|
|
|
|
2019-02-04 09:14:52 +00:00
|
|
|
if( ${HAVE_VM_JIT} )
|
|
|
|
set( PCH_SOURCES ${PCH_SOURCES} ${VM_JIT_SOURCES} )
|
|
|
|
else()
|
|
|
|
set( NOT_COMPILED_SOURCE_FILES ${NOT_COMPILED_SOURCE_FILES} ${VM_JIT_SOURCES} )
|
|
|
|
endif()
|
|
|
|
|
2019-08-22 07:44:30 +00:00
|
|
|
if( MSVC )
|
|
|
|
enable_precompiled_headers( g_pch.h PCH_SOURCES )
|
|
|
|
else()
|
|
|
|
# Temporary solution for compilers other than MSVC
|
|
|
|
set_source_files_properties( ${PCH_SOURCES} PROPERTIES COMPILE_FLAGS "-include g_pch.h" )
|
|
|
|
endif()
|
2016-04-10 11:08:54 +00:00
|
|
|
|
|
|
|
add_executable( zdoom WIN32 MACOSX_BUNDLE
|
|
|
|
${HEADER_FILES}
|
|
|
|
${NOT_COMPILED_SOURCE_FILES}
|
2020-04-11 17:21:41 +00:00
|
|
|
common/objects/__autostart.cpp
|
2016-04-10 11:08:54 +00:00
|
|
|
${SYSTEM_SOURCES}
|
|
|
|
${FASTMATH_SOURCES}
|
|
|
|
${PCH_SOURCES}
|
2020-04-11 11:04:17 +00:00
|
|
|
common/utility/x86.cpp
|
2020-04-11 10:52:48 +00:00
|
|
|
common/thirdparty/strnatcmp.c
|
2020-04-11 10:59:55 +00:00
|
|
|
common/utility/zstring.cpp
|
|
|
|
common/utility/findfile.cpp
|
2020-04-11 10:52:48 +00:00
|
|
|
common/thirdparty/math/asin.c
|
|
|
|
common/thirdparty/math/atan.c
|
|
|
|
common/thirdparty/math/const.c
|
|
|
|
common/thirdparty/math/cosh.c
|
|
|
|
common/thirdparty/math/exp.c
|
|
|
|
common/thirdparty/math/isnan.c
|
|
|
|
common/thirdparty/math/log.c
|
|
|
|
common/thirdparty/math/log10.c
|
|
|
|
common/thirdparty/math/mtherr.c
|
|
|
|
common/thirdparty/math/polevl.c
|
|
|
|
common/thirdparty/math/pow.c
|
|
|
|
common/thirdparty/math/powi.c
|
|
|
|
common/thirdparty/math/sin.c
|
|
|
|
common/thirdparty/math/sinh.c
|
|
|
|
common/thirdparty/math/sqrt.c
|
|
|
|
common/thirdparty/math/tan.c
|
|
|
|
common/thirdparty/math/tanh.c
|
|
|
|
common/thirdparty/math/fastsin.cpp
|
2020-04-11 17:21:41 +00:00
|
|
|
common/objects/zzautozend.cpp
|
2014-06-15 18:36:49 +00:00
|
|
|
)
|
|
|
|
|
2016-02-18 21:09:05 +00:00
|
|
|
set_source_files_properties( ${FASTMATH_SOURCES} PROPERTIES COMPILE_FLAGS ${ZD_FASTMATH_FLAG} )
|
2014-06-15 18:36:49 +00:00
|
|
|
set_source_files_properties( xlat/parse_xlat.cpp PROPERTIES OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.c" )
|
2020-04-11 11:46:15 +00:00
|
|
|
set_source_files_properties( common/engine/sc_man.cpp PROPERTIES OBJECT_DEPENDS "${CMAKE_CURRENT_BINARY_DIR}/sc_man_scanner.h" )
|
2014-01-18 23:10:48 +00:00
|
|
|
set_source_files_properties( ${NOT_COMPILED_SOURCE_FILES} PROPERTIES HEADER_FILE_ONLY TRUE )
|
2016-02-12 11:51:09 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
|
|
|
|
if(${CMAKE_SYSTEM_NAME} STREQUAL "SunOS")
|
|
|
|
# [BL] Solaris requires these to be explicitly linked.
|
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} nsl socket)
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2019-01-01 09:12:33 +00:00
|
|
|
if( UNIX )
|
|
|
|
find_package( Backtrace )
|
|
|
|
if(Backtrace_FOUND)
|
|
|
|
set( ZDOOM_LIBS ${ZDOOM_LIBS} ${Backtrace_LIBRARIES} )
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2020-02-09 07:56:49 +00:00
|
|
|
target_link_libraries( zdoom ${ZDOOM_LIBS} gdtoa lzma ${ZMUSIC_LIBRARIES} )
|
2016-10-01 04:51:55 +00:00
|
|
|
|
2014-06-15 18:36:49 +00:00
|
|
|
include_directories( .
|
2020-04-11 16:30:22 +00:00
|
|
|
common/audio/sound
|
2020-04-11 16:26:09 +00:00
|
|
|
common/audio/music
|
2020-04-11 10:52:48 +00:00
|
|
|
common/thirdparty
|
2020-04-11 17:04:48 +00:00
|
|
|
common/textures/formats
|
|
|
|
common/textures/hires
|
2020-04-11 11:36:23 +00:00
|
|
|
common/filesystem
|
2020-04-11 10:53:45 +00:00
|
|
|
common/utility
|
2020-04-11 16:11:43 +00:00
|
|
|
common/console
|
2020-04-11 11:43:47 +00:00
|
|
|
common/engine
|
2020-04-11 17:11:59 +00:00
|
|
|
common/fonts
|
2020-04-11 17:21:41 +00:00
|
|
|
common/objects
|
|
|
|
common/scripting/vm
|
|
|
|
common/scripting/jit
|
|
|
|
common/scripting/core
|
2017-01-20 21:59:31 +00:00
|
|
|
g_statusbar
|
2019-07-14 12:39:21 +00:00
|
|
|
console
|
2019-07-14 11:24:18 +00:00
|
|
|
playsim
|
2019-07-14 11:59:16 +00:00
|
|
|
playsim/bots
|
|
|
|
playsim/mapthinkers
|
2019-02-01 17:13:12 +00:00
|
|
|
gamedata
|
2019-02-01 17:31:57 +00:00
|
|
|
gamedata/textures
|
2019-02-17 10:43:04 +00:00
|
|
|
gamedata/fonts
|
2019-01-31 18:58:17 +00:00
|
|
|
rendering
|
2019-02-23 17:08:57 +00:00
|
|
|
rendering/2d
|
2019-07-14 19:09:49 +00:00
|
|
|
r_data
|
2014-06-15 18:36:49 +00:00
|
|
|
sound
|
2019-07-14 14:07:18 +00:00
|
|
|
sound/backend
|
2014-06-15 18:36:49 +00:00
|
|
|
xlat
|
2019-01-31 19:33:52 +00:00
|
|
|
utility
|
|
|
|
utility/nodebuilder
|
2016-10-12 17:22:33 +00:00
|
|
|
scripting
|
2019-07-14 19:09:49 +00:00
|
|
|
rendering
|
2019-02-20 20:21:57 +00:00
|
|
|
rendering/vulkan/thirdparty
|
2019-07-14 13:06:54 +00:00
|
|
|
../libraries/gdtoa
|
|
|
|
../libraries/glslang/glslang/Public
|
|
|
|
../libraries/glslang/spirv
|
2019-07-14 19:29:38 +00:00
|
|
|
${CMAKE_BINARY_DIR}/libraries/gdtoa
|
2014-06-15 18:36:49 +00:00
|
|
|
${SYSTEM_SOURCES_DIR} )
|
|
|
|
|
|
|
|
add_dependencies( zdoom revision_check )
|
|
|
|
|
2014-01-18 23:10:48 +00:00
|
|
|
# Due to some quirks, we need to do this in this order
|
2016-02-06 02:19:29 +00:00
|
|
|
if( NOT ZDOOM_OUTPUT_OLDSTYLE )
|
2014-01-18 23:10:48 +00:00
|
|
|
# RUNTIME_OUTPUT_DIRECTORY does not exist in CMake 2.4.
|
|
|
|
# Linux distributions are slow to adopt 2.6. :(
|
|
|
|
set_target_properties( zdoom PROPERTIES RUNTIME_OUTPUT_DIRECTORY ${ZDOOM_OUTPUT_DIR} )
|
|
|
|
set_target_properties( zdoom PROPERTIES OUTPUT_NAME ${ZDOOM_EXE_NAME} )
|
2016-02-06 02:19:29 +00:00
|
|
|
else()
|
2014-01-18 23:10:48 +00:00
|
|
|
set_target_properties( zdoom PROPERTIES
|
|
|
|
RUNTIME_OUTPUT_NAME ${ZDOOM_EXE_NAME}
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_RELEASE ${ZDOOM_OUTPUT_DIR}
|
|
|
|
RUNTIME_OUTPUT_NAME_DEBUG ${ZDOOM_EXE_NAME}d
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_DEBUG ${ZDOOM_OUTPUT_DIR}
|
|
|
|
RUNTIME_OUTPUT_NAME_MINSIZEREL ${ZDOOM_EXE_NAME}msr
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_MINSIZEREL ${ZDOOM_OUTPUT_DIR}
|
|
|
|
RUNTIME_OUTPUT_NAME_RELWITHDEBINFO ${ZDOOM_EXE_NAME}rd
|
|
|
|
RUNTIME_OUTPUT_DIRECTORY_RELWITHDEBINFO ${ZDOOM_OUTPUT_DIR}
|
|
|
|
)
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-01-18 23:10:48 +00:00
|
|
|
|
|
|
|
if( MSVC )
|
|
|
|
option( ZDOOM_GENERATE_MAPFILE "Generate .map file for debugging." OFF )
|
2016-09-06 09:36:30 +00:00
|
|
|
set( LINKERSTUFF "/MANIFEST:NO" )
|
|
|
|
|
2014-01-18 23:10:48 +00:00
|
|
|
if( ZDOOM_GENERATE_MAPFILE )
|
2016-02-06 18:05:41 +00:00
|
|
|
set( LINKERSTUFF "${LINKERSTUFF} /MAP" )
|
2016-02-06 03:38:10 +00:00
|
|
|
endif()
|
|
|
|
set_target_properties(zdoom PROPERTIES LINK_FLAGS ${LINKERSTUFF})
|
2014-01-18 23:10:48 +00:00
|
|
|
|
2016-02-06 02:19:29 +00:00
|
|
|
add_custom_command(TARGET zdoom POST_BUILD
|
|
|
|
COMMAND "mt.exe" -manifest \"${CMAKE_CURRENT_SOURCE_DIR}\\win32\\zdoom.exe.manifest\" -outputresource:\"$<TARGET_FILE:zdoom>\"\;\#1
|
|
|
|
COMMENT "Adding manifest..."
|
|
|
|
)
|
2014-01-18 23:10:48 +00:00
|
|
|
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2017-05-13 14:01:24 +00:00
|
|
|
if( NOT WIN32 AND NOT APPLE )
|
2014-06-15 18:36:49 +00:00
|
|
|
FILE( WRITE ${CMAKE_CURRENT_BINARY_DIR}/link-make "if [ ! -e ${ZDOOM_OUTPUT_DIR}/${ZDOOM_EXE_NAME} ]; then ln -sf ${CMAKE_CURRENT_BINARY_DIR}/${ZDOOM_EXE_NAME} ${ZDOOM_OUTPUT_DIR}/${ZDOOM_EXE_NAME}; fi" )
|
|
|
|
add_custom_command( TARGET zdoom POST_BUILD
|
|
|
|
COMMAND chmod +x ${CMAKE_CURRENT_BINARY_DIR}/link-make
|
|
|
|
COMMAND /bin/sh -c ${CMAKE_CURRENT_BINARY_DIR}/link-make )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2017-05-13 11:57:34 +00:00
|
|
|
|
|
|
|
add_custom_command(TARGET zdoom POST_BUILD
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
Upgrade libADLMIDI and libOPNMIDI
Added full-panning stereo, improvement of channel management, and many other things.
Also, I have implemented an ability to use custom WOPL (for libADLMIDI) and WOPN (for libOPNMIDI) banks from the same path as "soundfonts", but also, in the same environment, the "fm_banks" folder was added for WOPL/WOPN storing purposes.
To toggle usage of embedded or custom bank, I have added togglable booleans. When bank fails to be loaded, the default embedded bank is getting to be used as fallback.
ADLMIDI 1.4.0 2018-10-01
* Implemented a full support for Portamento! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
* Added support for SysEx event handling! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
* Added support for GS way of custom drum channels (through SysEx events)
* Ignore some NRPN events and lsb bank number when using GS standard (after catching of GS Reset SysEx call)
* Added support for CC66-Sostenuto controller (Pedal hold of currently-pressed notes only while CC64 holds also all next notes)
* Added support for CC67-SoftPedal controller (SoftPedal lowers the volume of notes played)
* Fixed correctness of CMF files playing
* Fixed unnecessary overuse of chip channels by blank notes
* Added API to disable specific MIDI tracks or play one of MIDI tracks solo
* Added support for more complex loop (loopStart=XX, loopEnd=0). Where XX - count of loops, or 0 - infinite. Nested loops are supported without of any limits.
* Added working implementation of TMB's velocity offset
* Added support for full-panning stereo option (Thanks to [Christopher Snowhill](https://github.com/kode54) for a work!)
* Fixed inability to play high notes due physical tone frequency out of range on the OPL3 chip
OPNMIDI 1.4.0 2018-10-01
* Implemented a full support for Portamento! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
* Added support for SysEx event handling! (Thanks to [Jean Pierre Cimalando](https://github.com/jpcima) for a work!)
* Added support for GS way of custom drum channels (through SysEx events)
* Ignore some NRPN events and lsb bank number when using GS standard (after catching of GS Reset SysEx call)
* Added support for CC66-Sostenuto controller (Pedal hold of currently-pressed notes only while CC64 holds also all next notes)
* Added support for CC67-SoftPedal controller (SoftPedal lowers the volume of notes played)
* Resolved a trouble which sometimes makes a junk noise sound and unnecessary overuse of chip channels
* Volume models support taken from libADLMIDI has been adapted to OPN2's chip speficis
* Fixed inability to play high notes due physical tone frequency out of range on the OPN2 chip
* Added support for full-panning stereo option
ADL&OPN Hotfix: re-calculated default banks
The fix on side of measurer of OPL3-BE and OPN2-BE where some instruments getting zero releasing time.
2018-10-01 21:07:05 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/soundfont/gzdoom.sf2 $<TARGET_FILE_DIR:zdoom>/soundfonts/gzdoom.sf2
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
|
|
${CMAKE_SOURCE_DIR}/fm_banks/GENMIDI.GS.wopl $<TARGET_FILE_DIR:zdoom>/fm_banks/GENMIDI.GS.wopl
|
|
|
|
COMMAND ${CMAKE_COMMAND} -E copy_if_different
|
|
|
|
${CMAKE_SOURCE_DIR}/fm_banks/gs-by-papiezak-and-sneakernets.wopn $<TARGET_FILE_DIR:zdoom>/fm_banks/gs-by-papiezak-and-sneakernets.wopn
|
|
|
|
)
|
2017-05-13 11:57:34 +00:00
|
|
|
|
2014-06-25 23:23:41 +00:00
|
|
|
if( CMAKE_COMPILER_IS_GNUCXX )
|
2014-06-15 18:36:49 +00:00
|
|
|
# GCC misoptimizes this file
|
|
|
|
set_source_files_properties( oplsynth/fmopl.cpp PROPERTIES COMPILE_FLAGS "-fno-tree-dominator-opts -fno-tree-fre" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-06-25 23:23:41 +00:00
|
|
|
if( ZD_CMAKE_COMPILER_IS_GNUCXX_COMPATIBLE )
|
2017-05-09 18:34:57 +00:00
|
|
|
# Need to enable intrinsics for these files.
|
2014-06-15 18:36:49 +00:00
|
|
|
if( SSE_MATTERS )
|
2020-02-13 13:29:48 +00:00
|
|
|
set_property( SOURCE
|
2019-05-30 18:24:06 +00:00
|
|
|
rendering/polyrenderer/poly_all.cpp
|
|
|
|
rendering/swrenderer/r_all.cpp
|
2020-02-13 13:29:48 +00:00
|
|
|
utility/palette.cpp
|
2019-05-30 18:24:06 +00:00
|
|
|
utility/x86.cpp
|
2020-02-13 13:29:48 +00:00
|
|
|
APPEND_STRING PROPERTY COMPILE_FLAGS " -msse2 -mmmx" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
2014-06-15 18:36:49 +00:00
|
|
|
|
2014-08-03 09:38:56 +00:00
|
|
|
if( APPLE )
|
2019-08-04 10:37:47 +00:00
|
|
|
set( LINK_FRAMEWORKS "-framework Cocoa -framework IOKit -framework OpenGL")
|
|
|
|
|
|
|
|
if( HAVE_VULKAN )
|
|
|
|
set( LINK_FRAMEWORKS "${LINK_FRAMEWORKS} -framework QuartzCore" )
|
|
|
|
endif()
|
|
|
|
|
2014-08-03 09:38:56 +00:00
|
|
|
set_target_properties(zdoom PROPERTIES
|
2019-08-04 10:37:47 +00:00
|
|
|
LINK_FLAGS "${LINK_FRAMEWORKS}"
|
2019-09-28 09:45:20 +00:00
|
|
|
MACOSX_BUNDLE_INFO_PLIST "${CMAKE_CURRENT_SOURCE_DIR}/posix/osx/zdoom-info.plist"
|
|
|
|
XCODE_ATTRIBUTE_CODE_SIGN_IDENTITY "" )
|
2014-08-03 09:38:56 +00:00
|
|
|
|
2019-03-09 13:46:18 +00:00
|
|
|
# Dymanic libraries like libvulkan.dylib or libMoltenVK.dylib will be loaded by dlopen()
|
|
|
|
# if placed in the directory with the main executable
|
|
|
|
set( CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -rpath @executable_path" )
|
2016-02-06 02:19:29 +00:00
|
|
|
endif()
|
2014-08-03 09:38:56 +00:00
|
|
|
|
2016-10-12 19:17:20 +00:00
|
|
|
if( WIN32 )
|
|
|
|
set( INSTALL_PATH . CACHE STRING "Directory where the zdoom executable will be placed during install." )
|
|
|
|
else()
|
|
|
|
set( INSTALL_PATH bin CACHE STRING "Directory where the zdoom executable will be placed during install." )
|
|
|
|
endif()
|
|
|
|
install(TARGETS zdoom
|
|
|
|
DESTINATION ${INSTALL_PATH}
|
|
|
|
COMPONENT "Game executable")
|
|
|
|
|
2014-01-18 23:10:48 +00:00
|
|
|
source_group("Audio Files" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/sound/.+")
|
2019-02-01 17:13:12 +00:00
|
|
|
source_group("Game Data" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/gamedata/.+")
|
2019-02-17 10:43:04 +00:00
|
|
|
source_group("Game Data\\Fonts" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/gamedata/fonts/.+")
|
2014-01-18 23:10:48 +00:00
|
|
|
source_group("Intermission" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/intermission/.+")
|
2018-12-27 16:11:10 +00:00
|
|
|
source_group("Map Loader" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/maploader/.+")
|
2014-01-18 23:10:48 +00:00
|
|
|
source_group("Menu" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/menu/.+")
|
2020-04-11 10:52:48 +00:00
|
|
|
source_group("Console" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/console/.+")
|
2019-07-14 11:59:16 +00:00
|
|
|
source_group("Playsim" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/playsim/.+")
|
|
|
|
source_group("Playsim\\Bots" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/playsim/bots/.+")
|
|
|
|
source_group("Playsim\\FraggleScript" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/playsim/fragglescript/.+")
|
|
|
|
source_group("Playsim\\Map Thinkers" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/playsim/mapthinkers/.+")
|
2019-01-31 18:58:17 +00:00
|
|
|
source_group("Rendering" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/.+")
|
2019-02-23 17:08:57 +00:00
|
|
|
source_group("Rendering\\2D" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/2d/.+")
|
2019-01-31 18:58:17 +00:00
|
|
|
source_group("Rendering\\Hardware Renderer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/gl/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Data" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/data/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Dynamic Lights" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/dynlights/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Models" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/models/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Postprocessing" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/postprocessing/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Renderer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/renderer/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Scene" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/scene/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Shaders" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/shaders/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\System" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/system/.+")
|
|
|
|
source_group("Rendering\\Hardware Renderer\\Textures" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/textures/.+")
|
2019-01-31 19:42:36 +00:00
|
|
|
source_group("Rendering\\Hardware Renderer\\Utilities" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/hwrenderer/utility/.+")
|
2019-02-20 20:21:57 +00:00
|
|
|
source_group("Rendering\\Vulkan Renderer\\System" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/vulkan/system/.+")
|
2019-02-21 21:49:00 +00:00
|
|
|
source_group("Rendering\\Vulkan Renderer\\Renderer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/vulkan/renderer/.+")
|
|
|
|
source_group("Rendering\\Vulkan Renderer\\Shaders" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/vulkan/shaders/.+")
|
2019-02-20 20:21:57 +00:00
|
|
|
source_group("Rendering\\Vulkan Renderer\\Textures" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/vulkan/textures/.+")
|
|
|
|
source_group("Rendering\\Vulkan Renderer\\Third Party" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/vulkan/thirdparty/.+")
|
|
|
|
source_group("Rendering\\Vulkan Renderer\\Third Party\\Volk" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/vulkan/thirdparty/volk/.+")
|
|
|
|
source_group("Rendering\\Vulkan Renderer\\Third Party\\Vk_Mem_Alloc" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/vulkan/thirdparty/vk_mem_alloc.+")
|
2019-01-31 18:58:17 +00:00
|
|
|
source_group("Rendering\\OpenGL Loader" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl_load/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\Data" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/data/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\Dynamic Lights" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/dynlights/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\Renderer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/renderer/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\Scene" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/scene/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\Shaders" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/shaders/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\System" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/system/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\Textures" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/textures/.+")
|
|
|
|
source_group("Rendering\\OpenGL Renderer\\Utilities" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/gl/utility/.+")
|
|
|
|
source_group("Rendering\\Software Renderer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/.+")
|
|
|
|
source_group("Rendering\\Software Renderer\\Drawers" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/drawers/.+")
|
|
|
|
source_group("Rendering\\Software Renderer\\Scene" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/scene/.+")
|
|
|
|
source_group("Rendering\\Software Renderer\\Segments" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/segments/.+")
|
|
|
|
source_group("Rendering\\Software Renderer\\Line" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/line/.+")
|
|
|
|
source_group("Rendering\\Software Renderer\\Plane" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/plane/.+")
|
|
|
|
source_group("Rendering\\Software Renderer\\Things" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/things/.+")
|
|
|
|
source_group("Rendering\\Software Renderer\\Viewport" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/swrenderer/viewport/.+")
|
|
|
|
source_group("Rendering\\Poly Renderer" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/polyrenderer/.+")
|
|
|
|
source_group("Rendering\\Poly Renderer\\Math" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/polyrenderer/math/.+")
|
|
|
|
source_group("Rendering\\Poly Renderer\\Drawers" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/polyrenderer/drawers/.+")
|
2019-05-22 04:29:52 +00:00
|
|
|
source_group("Rendering\\Poly Renderer\\Backend" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/rendering/polyrenderer/backend/.+")
|
2017-11-25 12:19:00 +00:00
|
|
|
source_group("Render Data" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/r_data/.+")
|
|
|
|
source_group("Render Data\\Models" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/r_data/models/.+")
|
2014-01-18 23:10:48 +00:00
|
|
|
source_group("Render Interface" FILES r_defs.h r_renderer.h r_sky.cpp r_sky.h r_state.h r_utility.cpp r_utility.h)
|
2016-10-12 17:22:33 +00:00
|
|
|
source_group("Platforms\\POSIX Files" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/posix/.+")
|
|
|
|
source_group("Platforms\\Cocoa Files" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/posix/cocoa/.+")
|
|
|
|
source_group("Platforms\\OS X Files" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/posix/osx/.+")
|
|
|
|
source_group("Platforms\\Unix Files" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/posix/unix/.+")
|
|
|
|
source_group("Platforms\\SDL Files" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/posix/sdl/.+")
|
|
|
|
source_group("Platforms\\Win32 Files" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/win32/.+")
|
2017-02-08 11:24:08 +00:00
|
|
|
source_group("Scripting\\Decorate frontend" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/scripting/decorate/.+")
|
|
|
|
source_group("Scripting\\ZScript frontend" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/scripting/zscript/.+" FILES ${CMAKE_CURRENT_BINARY_DIR}/zcc-parse.c ${CMAKE_CURRENT_BINARY_DIR}/zcc-parse.h)
|
|
|
|
source_group("Scripting\\Compiler backend" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/scripting/backend/.+")
|
2016-10-15 13:10:48 +00:00
|
|
|
source_group("Scripting" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/scripting/.+")
|
2020-04-11 10:52:48 +00:00
|
|
|
source_group("Common" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/.+")
|
2020-04-11 16:26:09 +00:00
|
|
|
source_group("Common\\Audio" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/audio/.+")
|
2020-04-11 16:30:22 +00:00
|
|
|
source_group("Common\\Audio\\Sound" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/audio/sound/.+")
|
|
|
|
source_group("Common\\Audio\\Sound\\Third-party" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/audio/sound/thirdparty/.+")
|
2020-04-11 16:26:09 +00:00
|
|
|
source_group("Common\\Audio\\Music" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/audio/music.+")
|
2020-04-11 16:11:43 +00:00
|
|
|
source_group("Common\\Console" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/console/.+")
|
|
|
|
source_group("Common\\Utility" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/utility/.+")
|
|
|
|
source_group("Common\\Engine" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/engine/.+")
|
2020-04-11 17:28:30 +00:00
|
|
|
source_group("Common\\Objects" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/objects/.+")
|
2020-04-11 17:11:59 +00:00
|
|
|
source_group("Common\\Fonts" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/fonts/.+")
|
2020-04-11 16:11:43 +00:00
|
|
|
source_group("Common\\File System" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/filesystem/.+")
|
2020-04-11 17:28:30 +00:00
|
|
|
source_group("Common\\Scripting" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/scripting/.+")
|
|
|
|
source_group("Common\\Scripting\\Core" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/scripting/core/.+")
|
|
|
|
source_group("Common\\Scripting\\JIT" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/scripting/jit/.+")
|
|
|
|
source_group("Common\\Scripting\\VM" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/scripting/vm/.+")
|
|
|
|
source_group("Common\\Textures" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/textures/.+")
|
2020-04-11 17:04:48 +00:00
|
|
|
source_group("Common\\Textures\\Hires" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/textures/hires/.+")
|
|
|
|
source_group("Common\\Textures\\Hires\\HQ Resize" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/textures/hires/hqnx/.+")
|
|
|
|
source_group("Common\\Textures\\Hires\\HQ Resize MMX version" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/textures/hires/hqnx_asm/.+")
|
|
|
|
source_group("Common\\Textures\\Hires\\XBRZ" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/textures/hires/xbr/.+")
|
|
|
|
source_group("Common\\Textures\\Formats" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/textures/formats/.+")
|
2020-04-11 10:52:48 +00:00
|
|
|
source_group("Common\\Third Party" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/.+")
|
|
|
|
source_group("Common\\Third Party\\Math" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/math/.+")
|
|
|
|
source_group("Common\\Third Party\\RapidJSON" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/rapidjson/.+")
|
2020-04-11 11:02:52 +00:00
|
|
|
source_group("Common\\Third Party\\SFMT" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/common/thirdparty/sfmt/.+")
|
2019-01-31 19:33:52 +00:00
|
|
|
source_group("Utility" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/utility/.+")
|
|
|
|
source_group("Utility\\Node Builder" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/utility/nodebuilder/.+")
|
2017-01-20 21:59:31 +00:00
|
|
|
source_group("Statusbar" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/g_statusbar/.+")
|
2014-01-18 23:10:48 +00:00
|
|
|
source_group("Versioning" FILES version.h win32/zdoom.rc)
|
|
|
|
source_group("Xlat" REGULAR_EXPRESSION "^${CMAKE_CURRENT_SOURCE_DIR}/xlat/.+" FILES ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.c ${CMAKE_CURRENT_BINARY_DIR}/xlat_parser.h)
|
2020-04-11 11:46:15 +00:00
|
|
|
source_group("Source Files" FILES ${CMAKE_CURRENT_BINARY_DIR}/sc_man_scanner.h common/engine/sc_man_scanner.re)
|