Skip to content
Snippets Groups Projects
Commit 5bfefb61 authored by Fabian Reister's avatar Fabian Reister
Browse files

kwarg names of armarx_add_qt_library

parent 6e37da2a
No related branches found
No related tags found
1 merge request!66Refactor/new arch
......@@ -27,7 +27,7 @@ function(armarx_add_qt_library TARGET)
# Parse arguments.
set(single_param)
set(flag_param)
set(multi_param SOURCES QT_MOC_HEADERS QT_UI_FILES QT_RESOURCES DEPENDENCIES)
set(multi_param SOURCES HEADERS UI_FILES RESOURCE_FILES DEPENDENCIES)
cmake_parse_arguments(PARSE_ARGV 1 AX "${flag_param}" "${single_param}" "${multi_param}")
if(DEFINED AX_UNPARSED_ARGUMENTS)
message(FATAL_ERROR "${TARGET}: Unknown arguments `${AX_UNPARSED_ARGUMENTS}`.")
......@@ -154,6 +154,7 @@ function(armarx_gui_plugin PLUGIN_NAME)
#generate and add files
set(outfile "${GENERATE_BASE_DIR}/${subdir}/${ARMARX_TARGET_NAME}")
foreach(suff h cpp)
# TODO move template to ArmarXGui
configure_file(
"${ArmarXCore_TEMPLATES_DIR}/GuiPluginTemplate/GuiPlugin.tmp.${suff}"
"${outfile}.${suff}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment