mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-06 19:12:30 +01:00
8223eb5c36
Fix paths in sidebar now that we have multiple storage paths Add Godot wallpaper and edit to ScreenPlay Fix showing Godot icon in task bar
18 lines
966 B
CMake
18 lines
966 B
CMake
#! generate_cmake_variable_header : Generates a header CmakeVariables.h that contains defines for the variables specified in CmakeVariables.h.in!
|
|
#
|
|
# The generated CmakeVariables.h header can then be used to access e.g. the PROJECT_NAME define in C++ code.
|
|
#
|
|
# Example
|
|
# generate_cmake_variable_header(${PROJECT_NAME})
|
|
#
|
|
function(generate_cmake_variable_header TARGET)
|
|
set(SOURCE_DIR ${CMAKE_SOURCE_DIR})
|
|
set(SCREENPLAY_GODOT_VERSION ${GODOT_VERSION})
|
|
|
|
# Specify the configuration file from which the header file will be generated
|
|
configure_file(${CMAKE_SOURCE_DIR}/CMake/CMakeVariables.h.in ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/CMakeVariables.h @ONLY)
|
|
message(STATUS "GENERATE: ${CMAKE_CURRENT_BINARY_DIR}/${PROJECT_NAME}/CMakeVariables.h and add ${TARGET} to ${CMAKE_CURRENT_BINARY_DIR}")
|
|
# Add the directory containing the generated header
|
|
target_include_directories(${TARGET} PRIVATE ${CMAKE_CURRENT_BINARY_DIR})
|
|
endfunction()
|