From 61cdb0ff496fd88137c48766be894ef0072c55ed Mon Sep 17 00:00:00 2001 From: Frederik Hennig <frederik.hennig@fau.de> Date: Wed, 15 Nov 2023 22:34:58 +0900 Subject: [PATCH] removed empty cmake function --- pystencilssfg/cmake/PystencilsSfgFunctions.cmake | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/pystencilssfg/cmake/PystencilsSfgFunctions.cmake b/pystencilssfg/cmake/PystencilsSfgFunctions.cmake index 9cd75aa..0817bf2 100644 --- a/pystencilssfg/cmake/PystencilsSfgFunctions.cmake +++ b/pystencilssfg/cmake/PystencilsSfgFunctions.cmake @@ -1,5 +1,4 @@ - set(PSSFG_CONFIGURATOR_SCRIPT "" CACHE FILEPATH "Configurator script for the pystencils Source File Generator" ) set(PSSFG_GENERATED_SOURCES_DIR "${CMAKE_BINARY_DIR}/pystencils_generated_sources") @@ -7,18 +6,6 @@ file(MAKE_DIRECTORY "${PSSFG_GENERATED_SOURCES_DIR}") include_directories(${PSSFG_GENERATED_SOURCES_DIR}) -function(_pssfg_config_cmdline_args OUTVAR) - set(options HEADER_ONLY) - set(oneValueArgs CONFIGURATOR_SCRIPT OUTPUT_DIR) - set(multiValueArgs FILE_EXTENSIONS) - - cmake_parse_arguments(_pssfg "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN}) - - - - set(${OUTVAR} ${cmdline} PARENT_SCOPE) -endfunction() - function(_pssfg_add_gen_source target script) set(options) set(oneValueArgs) -- GitLab