#
# Script project generator by Parra Studios
# Generates a script project embedded into CMake.
#
# Copyright (C) 2016 - 2026 Vicente Eduardo Ferrer Garcia <vic798@gmail.com>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
if(SCRIPTPROJECT_FOUND)
return()
endif()
set(SCRIPTPROJECT_FOUND YES)
# Define current script project configuration path
get_filename_component(SCRIPT_PROJECT_CONFIG_PATH ${CMAKE_CURRENT_LIST_FILE} PATH)
#
# Script sub-project util function
#
function(script_project name language configuration)
# Define upper and lower versions of the language
string(TOLOWER ${language} language_lower)
# Define project target name
set(custom_target "${language_lower}-${name}")
# Define target for the configuration
set(PACKAGE_TARGET "${custom_target}")
# Create project file
configure_file(${configuration} ${custom_target}-config.cmake @ONLY)
# Set custom target
add_custom_target(${custom_target} ALL)
#
# Deployment
#
# Install cmake script config
#install(FILES "${CMAKE_CURRENT_BINARY_DIR}/${custom_target}/${custom_target}-config.cmake"
# DESTINATION ${INSTALL_CMAKE}/${custom_target}
# COMPONENT runtime
#)
# CMake config
#install(EXPORT ${custom_target}-export
# NAMESPACE ${META_PROJECT_NAME}::
# DESTINATION ${INSTALL_CMAKE}/${custom_target}
# COMPONENT dev
#)
# Set project properties
set_target_properties(${custom_target}
PROPERTIES
${DEFAULT_PROJECT_OPTIONS}
FOLDER "${IDE_FOLDER}/${language}"
)
# Copy scripts
add_custom_command(TARGET ${custom_target} PRE_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/source ${LOADER_SCRIPT_PATH}
)
# Include generated project file
include(${CMAKE_CURRENT_BINARY_DIR}/${custom_target}-config.cmake)
endfunction()