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
0d809cd1
Commit
0d809cd1
authored
3 years ago
by
Christian Dreher
Browse files
Options
Downloads
Patches
Plain Diff
refactor: Restructuring.
parent
0239b6cc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!66
Refactor/new arch
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
etc/cmake/UseArmarXGui.cmake
+1
-1
1 addition, 1 deletion
etc/cmake/UseArmarXGui.cmake
etc/cmake/latest/add_qt_targets.cmake
+7
-7
7 additions, 7 deletions
etc/cmake/latest/add_qt_targets.cmake
with
8 additions
and
8 deletions
etc/cmake/UseArmarXGui.cmake
+
1
−
1
View file @
0d809cd1
...
...
@@ -5,5 +5,5 @@ if(NOT DEFINED ARMARX_LEGACY_CMAKE_PROJECT OR ${ARMARX_LEGACY_CMAKE_PROJECT})
include
(
${
ArmarXGui_CMAKE_DIR
}
/legacy/GuiCommands.cmake
)
else
()
message
(
STATUS
"Using ArmarXGui scripts in next-gen mode."
)
include
(
${
ArmarXGui_CMAKE_DIR
}
/latest/
GuiCommand
s.cmake
)
include
(
${
ArmarXGui_CMAKE_DIR
}
/latest/
add_qt_target
s.cmake
)
endif
()
This diff is collapsed.
Click to expand it.
etc/cmake/latest/
GuiCommand
s.cmake
→
etc/cmake/latest/
add_qt_target
s.cmake
+
7
−
7
View file @
0d809cd1
...
...
@@ -96,11 +96,6 @@ function(armarx_add_qt_plugin TARGET)
DEPENDENCIES
${
AX_DEPENDENCIES
}
DEPENDENCIES_LEGACY
${
AX_DEPENDENCIES_LEGACY
}
)
# Add Qt targets to all_generate and generated files.
add_dependencies
(
all_generate
${
TARGET
}
_autogen
)
file
(
GLOB_RECURSE QT_GENERATED_FILES
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
TARGET
}
_autogen/*"
)
target_sources
(
generated_files PRIVATE
${
QT_GENERATED_FILES
}
)
endfunction
()
...
...
@@ -114,12 +109,12 @@ function(armarx_add_qt_library TARGET)
message
(
FATAL_ERROR
"
${
TARGET
}
: Unknown arguments `
${
AX_UNPARSED_ARGUMENTS
}
`."
)
endif
()
# Variables modified within this co
ntext
.
# Variables modified within this
s
co
pe
.
set
(
SOURCES
${
AX_SOURCES
}
)
set
(
HEADERS
${
AX_HEADERS
}
${
AX_UI_FILES
}
)
set
(
DEPENDENCIES
${
AX_DEPENDENCIES
}
)
# TODO:
urgh..
.
# TODO:
Remove this
.
if
(
NOT
"
${
TARGET
}
"
STREQUAL
"ArmarXGuiBase"
)
list
(
APPEND DEPENDENCIES ArmarXGuiBase
)
endif
()
...
...
@@ -158,4 +153,9 @@ function(armarx_add_qt_library TARGET)
"-P"
"
${
ArmarXGui_CMAKE_DIR
}
/check_qt_moc_includes.cmake"
COMMENT
"Checking Qt MOC includes."
)
# Add Qt targets to all_generate and generated files.
add_dependencies
(
all_generate
${
TARGET
}
_autogen
)
file
(
GLOB_RECURSE QT_GENERATED_FILES
"
${
CMAKE_CURRENT_BINARY_DIR
}
/
${
TARGET
}
_autogen/*"
)
target_sources
(
generated_files PRIVATE
${
QT_GENERATED_FILES
}
)
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