mirror of
https://github.com/ncblakely/GiantsTools
synced 2024-11-05 14:55:38 +01:00
235 lines
7.2 KiB
CMake
235 lines
7.2 KiB
CMake
|
# DirectX Tool Kit for DirectX 11
|
|||
|
#
|
|||
|
# Copyright (c) Microsoft Corporation. All rights reserved.
|
|||
|
# Licensed under the MIT License.
|
|||
|
#
|
|||
|
# http://go.microsoft.com/fwlink/?LinkId=248929
|
|||
|
|
|||
|
cmake_minimum_required (VERSION 3.11)
|
|||
|
|
|||
|
project (DirectXTK LANGUAGES CXX)
|
|||
|
|
|||
|
option(BUILD_XAUDIO_WIN10 "Build for XAudio 2.9" OFF)
|
|||
|
option(BUILD_XAUDIO_WIN8 "Build for XAudio 2.8" ON)
|
|||
|
|
|||
|
option(ENABLE_CODE_ANALYSIS "Use Static Code Analysis on build" OFF)
|
|||
|
|
|||
|
set(CMAKE_CXX_STANDARD 14)
|
|||
|
set(CMAKE_CXX_STANDARD_REQUIRED ON)
|
|||
|
set(CMAKE_CXX_EXTENSIONS OFF)
|
|||
|
|
|||
|
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/CMake")
|
|||
|
set(CMAKE_LIBRARY_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/CMake")
|
|||
|
set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "${CMAKE_BINARY_DIR}/bin/CMake")
|
|||
|
|
|||
|
set(LIBRARY_SOURCES
|
|||
|
Inc/BufferHelpers.h
|
|||
|
Inc/CommonStates.h
|
|||
|
Inc/DDSTextureLoader.h
|
|||
|
Inc/DirectXHelpers.h
|
|||
|
Inc/Effects.h
|
|||
|
Inc/GamePad.h
|
|||
|
Inc/GeometricPrimitive.h
|
|||
|
Inc/GraphicsMemory.h
|
|||
|
Inc/Keyboard.h
|
|||
|
Inc/Model.h
|
|||
|
Inc/Mouse.h
|
|||
|
Inc/PostProcess.h
|
|||
|
Inc/PrimitiveBatch.h
|
|||
|
Inc/ScreenGrab.h
|
|||
|
Inc/SimpleMath.h
|
|||
|
Inc/SimpleMath.inl
|
|||
|
Inc/SpriteBatch.h
|
|||
|
Inc/SpriteFont.h
|
|||
|
Inc/VertexTypes.h
|
|||
|
Inc/WICTextureLoader.h
|
|||
|
Src/AlignedNew.h
|
|||
|
Src/AlphaTestEffect.cpp
|
|||
|
Src/BasicEffect.cpp
|
|||
|
Src/BasicPostProcess.cpp
|
|||
|
Src/Bezier.h
|
|||
|
Src/BinaryReader.cpp
|
|||
|
Src/BinaryReader.h
|
|||
|
Src/BufferHelpers.cpp
|
|||
|
Src/CommonStates.cpp
|
|||
|
Src/dds.h
|
|||
|
Src/DDSTextureLoader.cpp
|
|||
|
Src/DebugEffect.cpp
|
|||
|
Src/DemandCreate.h
|
|||
|
Src/DGSLEffect.cpp
|
|||
|
Src/DGSLEffectFactory.cpp
|
|||
|
Src/DirectXHelpers.cpp
|
|||
|
Src/DualPostProcess.cpp
|
|||
|
Src/DualTextureEffect.cpp
|
|||
|
Src/EffectCommon.cpp
|
|||
|
Src/EffectCommon.h
|
|||
|
Src/EffectFactory.cpp
|
|||
|
Src/EnvironmentMapEffect.cpp
|
|||
|
Src/GamePad.cpp
|
|||
|
Src/GeometricPrimitive.cpp
|
|||
|
Src/Geometry.h
|
|||
|
Src/Geometry.cpp
|
|||
|
Src/GraphicsMemory.cpp
|
|||
|
Src/Keyboard.cpp
|
|||
|
Src/LoaderHelpers.h
|
|||
|
Src/Model.cpp
|
|||
|
Src/ModelLoadCMO.cpp
|
|||
|
Src/ModelLoadSDKMESH.cpp
|
|||
|
Src/ModelLoadVBO.cpp
|
|||
|
Src/Mouse.cpp
|
|||
|
Src/NormalMapEffect.cpp
|
|||
|
Src/PBREffect.cpp
|
|||
|
Src/PBREffectFactory.cpp
|
|||
|
Src/pch.h
|
|||
|
Src/PlatformHelpers.h
|
|||
|
Src/PrimitiveBatch.cpp
|
|||
|
Src/ScreenGrab.cpp
|
|||
|
Src/SDKMesh.h
|
|||
|
Src/SharedResourcePool.h
|
|||
|
Src/SimpleMath.cpp
|
|||
|
Src/SkinnedEffect.cpp
|
|||
|
Src/SpriteBatch.cpp
|
|||
|
Src/SpriteFont.cpp
|
|||
|
Src/TeapotData.inc
|
|||
|
Src/ToneMapPostProcess.cpp
|
|||
|
Src/vbo.h
|
|||
|
Src/VertexTypes.cpp
|
|||
|
Src/WICTextureLoader.cpp)
|
|||
|
|
|||
|
set(SHADER_SOURCES
|
|||
|
Src/Shaders/AlphaTestEffect.fx
|
|||
|
Src/Shaders/BasicEffect.fx
|
|||
|
Src/Shaders/Common.fxh
|
|||
|
Src/Shaders/DebugEffect.fx
|
|||
|
Src/Shaders/DGSLEffect.fx
|
|||
|
Src/Shaders/DGSLLambert.hlsl
|
|||
|
Src/Shaders/DGSLPhong.hlsl
|
|||
|
Src/Shaders/DGSLUnlit.hlsl
|
|||
|
Src/Shaders/DualTextureEffect.fx
|
|||
|
Src/Shaders/EnvironmentMapEffect.fx
|
|||
|
Src/Shaders/Lighting.fxh
|
|||
|
Src/Shaders/NormalMapEffect.fx
|
|||
|
Src/Shaders/PBRCommon.fxh
|
|||
|
Src/Shaders/PBREffect.fx
|
|||
|
Src/Shaders/PixelPacking_Velocity.hlsli
|
|||
|
Src/Shaders/PostProcess.fx
|
|||
|
Src/Shaders/SkinnedEffect.fx
|
|||
|
Src/Shaders/SpriteEffect.fx
|
|||
|
Src/Shaders/Structures.fxh
|
|||
|
Src/Shaders/ToneMap.fx
|
|||
|
Src/Shaders/Utilities.fxh)
|
|||
|
|
|||
|
if((BUILD_XAUDIO_WIN10) OR (BUILD_XAUDIO_WIN8))
|
|||
|
set(LIBRARY_SOURCES ${LIBRARY_SOURCES}
|
|||
|
Inc/Audio.h
|
|||
|
Audio/AudioEngine.cpp
|
|||
|
Audio/DynamicSoundEffectInstance.cpp
|
|||
|
Audio/SoundCommon.cpp
|
|||
|
Audio/SoundCommon.h
|
|||
|
Audio/SoundEffect.cpp
|
|||
|
Audio/SoundEffectInstance.cpp
|
|||
|
Audio/SoundStreamInstance.cpp
|
|||
|
Audio/WaveBank.cpp
|
|||
|
Audio/WaveBankReader.cpp
|
|||
|
Audio/WaveBankReader.h
|
|||
|
Audio/WAVFileReader.cpp
|
|||
|
Audio/WAVFileReader.h)
|
|||
|
endif()
|
|||
|
|
|||
|
add_library(${PROJECT_NAME} STATIC ${LIBRARY_SOURCES} Src/Shaders/Compiled/SpriteEffect_SpriteVertexShader.inc)
|
|||
|
|
|||
|
if (${CMAKE_VERSION} VERSION_GREATER_EQUAL "3.16")
|
|||
|
target_precompile_headers(${PROJECT_NAME} PRIVATE Src/pch.h)
|
|||
|
endif()
|
|||
|
|
|||
|
add_custom_command(
|
|||
|
OUTPUT "${PROJECT_SOURCE_DIR}/Src/Shaders/Compiled/SpriteEffect_SpriteVertexShader.inc"
|
|||
|
MAIN_DEPENDENCY "${PROJECT_SOURCE_DIR}/Src/Shaders/CompileShaders.cmd"
|
|||
|
DEPENDS ${SHADER_SOURCES}
|
|||
|
COMMENT "Generating HLSL shaders..."
|
|||
|
COMMAND "CompileShaders.cmd"
|
|||
|
WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}/Src/Shaders"
|
|||
|
USES_TERMINAL)
|
|||
|
|
|||
|
source_group(Audio REGULAR_EXPRESSION Audio/*.*)
|
|||
|
source_group(Inc REGULAR_EXPRESSION Inc/*.*)
|
|||
|
source_group(Src REGULAR_EXPRESSION Src/*.*)
|
|||
|
|
|||
|
target_include_directories(${PROJECT_NAME} PUBLIC Inc)
|
|||
|
target_include_directories(${PROJECT_NAME} PRIVATE Src)
|
|||
|
|
|||
|
if((BUILD_XAUDIO_WIN10) OR (BUILD_XAUDIO_WIN8))
|
|||
|
target_include_directories(${PROJECT_NAME} PRIVATE Audio)
|
|||
|
endif()
|
|||
|
|
|||
|
if(MSVC)
|
|||
|
# Use max Warning Level
|
|||
|
string(REPLACE "/W3 " "/Wall " CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS})
|
|||
|
string(REPLACE "/W3 " "/Wall " CMAKE_CXX_FLAGS_DEBUG ${CMAKE_CXX_FLAGS_DEBUG})
|
|||
|
string(REPLACE "/W3 " "/Wall " CMAKE_CXX_FLAGS_RELEASE ${CMAKE_CXX_FLAGS_RELEASE})
|
|||
|
|
|||
|
# Model uses dynamic_cast, so we need /GR (Enable RTTI)
|
|||
|
|
|||
|
# Library needs /EHsc (Enable C++ exceptions)
|
|||
|
endif()
|
|||
|
|
|||
|
add_executable(xwbtool
|
|||
|
xwbtool/xwbtool.cpp
|
|||
|
Audio/WAVFileReader.cpp
|
|||
|
Audio/WAVFileReader.h)
|
|||
|
target_include_directories(xwbtool PRIVATE Audio Src)
|
|||
|
target_link_libraries(xwbtool version.lib)
|
|||
|
source_group(xwbtool REGULAR_EXPRESSION XWBTool/*.*)
|
|||
|
|
|||
|
if(MSVC)
|
|||
|
target_compile_options(${PROJECT_NAME} PRIVATE /fp:fast)
|
|||
|
target_compile_options(xwbtool PRIVATE /fp:fast)
|
|||
|
|
|||
|
if(ENABLE_CODE_ANALYSIS)
|
|||
|
target_compile_options(${PROJECT_NAME} PRIVATE /analyze)
|
|||
|
target_compile_options(xwbtool PRIVATE /analyze)
|
|||
|
endif()
|
|||
|
|
|||
|
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 19.26)
|
|||
|
target_compile_options(${PROJECT_NAME} PRIVATE /Zc:preprocessor /wd5104 /wd5105)
|
|||
|
target_compile_options(xwbtool PRIVATE /Zc:preprocessor /wd5104 /wd5105)
|
|||
|
endif()
|
|||
|
|
|||
|
if (${CMAKE_SIZEOF_VOID_P} EQUAL "4")
|
|||
|
target_compile_options(${PROJECT_NAME} PRIVATE /arch:SSE2)
|
|||
|
target_compile_options(xwbtool PRIVATE /arch:SSE2)
|
|||
|
endif()
|
|||
|
endif()
|
|||
|
|
|||
|
if ( CMAKE_CXX_COMPILER_ID MATCHES "Clang" )
|
|||
|
set(WarningsLib "-Wpedantic" "-Wextra")
|
|||
|
target_compile_options(${PROJECT_NAME} PRIVATE ${WarningsLib})
|
|||
|
|
|||
|
set(WarningsEXE ${WarningsLib} "-Wno-c++98-compat" "-Wno-c++98-compat-pedantic"
|
|||
|
"-Wno-double-promotion" "-Wno-exit-time-destructors" "-Wno-gnu-anonymous-struct"
|
|||
|
"-Wno-missing-prototypes" "-Wno-nested-anon-types" "-Wno-unused-const-variable")
|
|||
|
target_compile_options(xwbtool PRIVATE ${WarningsEXE})
|
|||
|
endif()
|
|||
|
if ( CMAKE_CXX_COMPILER_ID MATCHES "MSVC" )
|
|||
|
target_compile_options(${PROJECT_NAME} PRIVATE /permissive- /JMC- /Zc:__cplusplus)
|
|||
|
target_compile_options(xwbtool PRIVATE /permissive- /Zc:__cplusplus)
|
|||
|
|
|||
|
set(WarningsEXE "/wd4365" "/wd4710" "/wd4820" "/wd5039" "/wd5045")
|
|||
|
target_compile_options(xwbtool PRIVATE ${WarningsEXE})
|
|||
|
endif()
|
|||
|
|
|||
|
if(WIN32)
|
|||
|
target_compile_definitions(${PROJECT_NAME} PRIVATE _UNICODE UNICODE)
|
|||
|
target_compile_definitions(xwbtool PRIVATE _UNICODE UNICODE _WIN32_WINNT=0x0601)
|
|||
|
|
|||
|
if(BUILD_XAUDIO_WIN10)
|
|||
|
target_compile_definitions(${PROJECT_NAME} PRIVATE _WIN32_WINNT=0x0A00)
|
|||
|
elseif(BUILD_XAUDIO_WIN8)
|
|||
|
target_compile_definitions(${PROJECT_NAME} PRIVATE _WIN32_WINNT=0x0602)
|
|||
|
else()
|
|||
|
target_compile_definitions(${PROJECT_NAME} PRIVATE _WIN32_WINNT=0x0601)
|
|||
|
endif()
|
|||
|
endif()
|
|||
|
|
|||
|
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT xwbtool)
|