2018-04-09 12:48:37 +00:00
|
|
|
# Copyright(c) 2015-2018, NVIDIA CORPORATION. All rights reserved.
|
2016-02-16 14:07:55 +00:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# * Neither the name of NVIDIA CORPORATION nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY
|
|
|
|
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
|
|
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
|
|
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
|
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
|
|
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
|
|
|
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.2)
|
|
|
|
|
2018-03-31 08:09:50 +00:00
|
|
|
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
|
|
|
|
|
2016-06-21 08:35:47 +00:00
|
|
|
project(VulkanHppGenerator)
|
2016-02-16 14:07:55 +00:00
|
|
|
|
2018-08-17 15:47:48 +00:00
|
|
|
if(MSVC)
|
|
|
|
add_compile_options(/W4)
|
|
|
|
else(MSVC)
|
|
|
|
add_compile_options(-Wall)
|
|
|
|
endif(MSVC)
|
|
|
|
|
2019-11-05 09:47:43 +00:00
|
|
|
if (NOT DEFINED VULKAN_HPP_VULKAN_HEADERS_SRC_DIR)
|
|
|
|
set(VULKAN_HPP_VULKAN_HEADERS_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/Vulkan-Headers")
|
|
|
|
endif()
|
|
|
|
file(TO_NATIVE_PATH ${VULKAN_HPP_VULKAN_HEADERS_SRC_DIR}/registry/vk.xml vk_spec)
|
2016-04-12 09:36:14 +00:00
|
|
|
string(REPLACE "\\" "\\\\" vk_spec ${vk_spec})
|
|
|
|
add_definitions(-DVK_SPEC="${vk_spec}")
|
|
|
|
|
2019-11-05 09:47:43 +00:00
|
|
|
if (NOT DEFINED VULKAN_HPP_PATH)
|
|
|
|
set(VULKAN_HPP_PATH "${CMAKE_CURRENT_SOURCE_DIR}/vulkan")
|
|
|
|
endif()
|
|
|
|
file(TO_NATIVE_PATH ${VULKAN_HPP_PATH}/vulkan.hpp vulkan_hpp)
|
2016-06-21 08:35:47 +00:00
|
|
|
string(REPLACE "\\" "\\\\" vulkan_hpp ${vulkan_hpp})
|
2018-03-31 08:09:50 +00:00
|
|
|
add_definitions(-DVULKAN_HPP_FILE="${vulkan_hpp}")
|
2019-11-05 09:47:43 +00:00
|
|
|
include_directories(${VULKAN_HPP_PATH})
|
|
|
|
|
2016-04-12 09:36:14 +00:00
|
|
|
|
2016-02-16 14:07:55 +00:00
|
|
|
set(HEADERS
|
2017-12-21 11:40:48 +00:00
|
|
|
VulkanHppGenerator.hpp
|
2016-02-16 14:07:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
set(SOURCES
|
2016-06-21 08:35:47 +00:00
|
|
|
VulkanHppGenerator.cpp
|
2016-02-16 14:07:55 +00:00
|
|
|
)
|
|
|
|
|
2019-10-31 09:06:22 +00:00
|
|
|
if (NOT DEFINED VULKAN_HPP_TINYXML2_SRC_DIR)
|
|
|
|
set(VULKAN_HPP_TINYXML2_SRC_DIR "${CMAKE_CURRENT_SOURCE_DIR}/tinyxml2")
|
|
|
|
endif()
|
|
|
|
|
2016-02-17 13:03:05 +00:00
|
|
|
set(TINYXML2_SOURCES
|
2019-10-31 09:06:22 +00:00
|
|
|
${VULKAN_HPP_TINYXML2_SRC_DIR}/tinyxml2.cpp
|
2016-02-16 14:07:55 +00:00
|
|
|
)
|
|
|
|
|
2016-02-17 13:03:05 +00:00
|
|
|
set(TINYXML2_HEADERS
|
2019-10-31 09:06:22 +00:00
|
|
|
${VULKAN_HPP_TINYXML2_SRC_DIR}/tinyxml2.h
|
2016-02-16 14:07:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
source_group(headers FILES ${HEADERS})
|
|
|
|
source_group(sources FILES ${SOURCES})
|
|
|
|
|
2016-02-17 13:03:05 +00:00
|
|
|
source_group(TinyXML2\\headers FILES ${TINYXML2_HEADERS})
|
|
|
|
source_group(TinyXML2\\sources FILES ${TINYXML2_SOURCES})
|
2016-02-16 14:07:55 +00:00
|
|
|
|
2016-06-21 08:35:47 +00:00
|
|
|
add_executable(VulkanHppGenerator
|
2016-02-16 14:07:55 +00:00
|
|
|
${HEADERS}
|
|
|
|
${SOURCES}
|
2016-02-17 13:03:05 +00:00
|
|
|
${TINYXML2_SOURCES}
|
|
|
|
${TINYXML2_HEADERS}
|
2016-02-16 14:07:55 +00:00
|
|
|
)
|
|
|
|
|
2016-06-21 08:35:47 +00:00
|
|
|
set_property(TARGET VulkanHppGenerator PROPERTY CXX_STANDARD 11)
|
2016-02-16 14:07:55 +00:00
|
|
|
|
2019-10-31 09:06:22 +00:00
|
|
|
target_include_directories(VulkanHppGenerator PRIVATE ${VULKAN_HPP_TINYXML2_SRC_DIR})
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2019-11-06 13:48:21 +00:00
|
|
|
option (VULKAN_HPP_RUN_GENERATOR "Run the HPP generator" OFF)
|
|
|
|
if (VULKAN_HPP_RUN_GENERATOR)
|
|
|
|
add_custom_command(
|
|
|
|
COMMAND VulkanHppGenerator
|
|
|
|
OUTPUT "${vulkan_hpp}"
|
|
|
|
WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}"
|
|
|
|
COMMENT "run VulkanHppGenerator"
|
|
|
|
DEPENDS VulkanHppGenerator "${vk_spec}")
|
|
|
|
|
|
|
|
add_custom_target(build_vulkan_hpp ALL
|
|
|
|
DEPENDS "${vulkan_hpp}" "${vk_spec}")
|
|
|
|
endif()
|
|
|
|
|
2018-03-31 08:09:50 +00:00
|
|
|
option (SAMPLES_BUILD OFF)
|
|
|
|
if (SAMPLES_BUILD)
|
2019-07-25 11:52:09 +00:00
|
|
|
add_subdirectory(glfw)
|
2019-02-13 11:17:22 +00:00
|
|
|
add_subdirectory(glslang)
|
2018-03-31 08:09:50 +00:00
|
|
|
add_subdirectory(samples)
|
2018-09-19 11:49:43 +00:00
|
|
|
endif (SAMPLES_BUILD)
|
|
|
|
|
|
|
|
option (TESTS_BUILD OFF)
|
|
|
|
if (TESTS_BUILD)
|
|
|
|
add_subdirectory(tests)
|
2019-10-31 09:06:22 +00:00
|
|
|
endif (TESTS_BUILD)
|
2019-11-14 09:07:27 +00:00
|
|
|
|
|
|
|
if (${VULKAN_HPP_INSTALL})
|
|
|
|
install(FILES ${vulkan_hpp} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/vulkan)
|
|
|
|
endif()
|