Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
ArmarXGui
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software
ArmarX
ArmarXGui
Commits
d7954bc8
Commit
d7954bc8
authored
4 years ago
by
Raphael Grimm
Browse files
Options
Downloads
Patches
Plain Diff
Add armarx_gui_plugin macro to make gui plugin code cleaner
parent
c24ef58b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
etc/cmake/UseArmarXGui.cmake
+59
-2
59 additions, 2 deletions
etc/cmake/UseArmarXGui.cmake
with
59 additions
and
2 deletions
etc/cmake/UseArmarXGui.cmake
+
59
−
2
View file @
d7954bc8
...
...
@@ -42,12 +42,13 @@ function(armarx_gui_library PLUGIN_NAME SOURCES QT_MOC_HDRS QT_UIS QT_RESOURCES
list
(
APPEND HEADERS
${
QT_MOC_HDRS
}
)
list
(
APPEND HEADERS
${
QT_UIS
}
)
set
(
GENERATE_BASE_DIR
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PLUGIN_NAME
}
_autogen/include"
)
install
(
DIRECTORY
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PLUGIN_NAME
}
_autogen/include/
"
DESTINATION
"include"
COMPONENT headers
)
install
(
DIRECTORY
"
${
GENERATE_BASE_DIR
}
"
DESTINATION
"include"
COMPONENT headers
)
printtarget
(
"
${
HEADERS
}
"
"
${
SOURCES
}
"
"
${
QT_RESOURCES
}
"
"
${
COMPONENT_LIBS
}
"
)
armarx_add_library
(
"
${
PLUGIN_NAME
}
"
"
${
SOURCES
}
"
"
${
HEADERS
}
"
"
${
COMPONENT_LIBS
}
"
)
target_include_directories
(
"
${
PLUGIN_NAME
}
"
PUBLIC $<BUILD_INTERFACE:
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PLUGIN_NAME
}
_autogen/include
>
)
target_include_directories
(
"
${
PLUGIN_NAME
}
"
PUBLIC $<BUILD_INTERFACE:
${
GENERATE_BASE_DIR
}
>
)
target_compile_definitions
(
"
${
PLUGIN_NAME
}
"
PUBLIC -DQ_COMPILER_INITIALIZER_LISTS
)
set_target_properties
(
"
${
PLUGIN_NAME
}
"
PROPERTIES AUTOMOC ON
)
...
...
@@ -73,3 +74,59 @@ function(armarx_gui_library PLUGIN_NAME SOURCES QT_MOC_HDRS QT_UIS QT_RESOURCES
printlist
(
" "
"
${
INCLUDE_DIRECTORIES
}
"
)
endif
()
endfunction
()
function
(
armarx_gui_plugin PLUGIN_NAME SOURCES QT_MOC_HDRS QT_UIS QT_RESOURCES COMPONENT_LIBS
)
list
(
APPEND SOURCES
${
QT_RESOURCES
}
)
list
(
APPEND HEADERS
${
QT_MOC_HDRS
}
)
list
(
APPEND HEADERS
${
QT_UIS
}
)
set
(
GENERATE_BASE_DIR
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
PLUGIN_NAME
}
_autogen/include"
)
#gui plugin name
string
(
REPLACE
"GuiPlugin"
""
ARMARX_GUI_PLUGIN_PREFIX
"
${
ARMARX_TARGET_NAME
}
"
)
#autogen header if none was supplied
set
(
tmp_headers
${
HEADERS
}
)
set
(
tmp_regex
"(^|
\\
.*/)
${
ARMARX_GUI_PLUGIN_PREFIX
}
GuiPlugin
\\
.h"
)
list
(
FILTER tmp_headers INCLUDE REGEX
"
${
tmp_regex
}
"
)
list
(
REMOVE_DUPLICATES tmp_headers
)
list
(
LENGTH tmp_headers tmp_headers_len
)
if
(
"0"
STREQUAL
"
${
tmp_headers_len
}
"
)
########################################################################
#get rel path for subdir
file
(
RELATIVE_PATH subdir
"
${
PROJECT_SOURCECODE_DIR
}
"
"
${
CMAKE_CURRENT_SOURCE_DIR
}
"
)
########################################################################
#get the widget controller header
set
(
tmp_headers
${
HEADERS
}
)
set
(
tmp_regex
"(^|
\\
.*/)
${
ARMARX_GUI_PLUGIN_PREFIX
}
WidgetController
\\
.h"
)
list
(
FILTER tmp_headers INCLUDE REGEX
"
${
tmp_regex
}
"
)
list
(
REMOVE_DUPLICATES tmp_headers
)
list
(
LENGTH tmp_headers tmp_headers_len
)
if
(
NOT
"1"
STREQUAL
"
${
tmp_headers_len
}
"
)
message
(
FATAL_ERROR
"Failed to auto generate the GuiPlugin headers! Error: Can't find the widget controller"
)
endif
()
list
(
POP_BACK tmp_headers tmp_hdr
)
set
(
ARMARX_GUI_PLUGIN_WIDGET_CONTROLLER_HEDER
"
${
subdir
}
/
${
tmp_hdr
}
"
)
########################################################################
#generate and add files
set
(
outfile
"
${
GENERATE_BASE_DIR
}
/
${
subdir
}
/
${
ARMARX_TARGET_NAME
}
"
)
foreach
(
suff h cpp
)
configure_file
(
"
${
ArmarXCore_TEMPLATES_DIR
}
/GuiPluginTemplate/GuiPlugin.tmp.
${
suff
}
"
"
${
outfile
}
.
${
suff
}
"
@ONLY
)
endforeach
()
list
(
APPEND SOURCES
"
${
outfile
}
.cpp"
)
list
(
APPEND HEADERS
"
${
outfile
}
.h"
)
endif
()
armarx_gui_library
(
"
${
PLUGIN_NAME
}
"
"
${
SOURCES
}
"
"
${
HEADERS
}
"
""
"
${
QT_RESOURCES
}
"
"
${
COMPONENT_LIBS
}
"
)
endfunction
()
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment