Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
OpenFlipper
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OpenFlipper-Free
OpenFlipper
Commits
cf89ed29
Commit
cf89ed29
authored
6 years ago
by
Jan Möbius
Browse files
Options
Downloads
Patches
Plain Diff
Use generator expressions to correct include path on windows for uic autogen
parent
41b52e0b
No related branches found
No related tags found
1 merge request
!123
Enable autouic
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
libs_required/ACG/CMakeLists.txt
+10
-3
10 additions, 3 deletions
libs_required/ACG/CMakeLists.txt
with
10 additions
and
3 deletions
libs_required/ACG/CMakeLists.txt
+
10
−
3
View file @
cf89ed29
...
...
@@ -137,9 +137,16 @@ acg_print_configure_header (ACG "ACG")
RECURSE_GROUPS
(
${
CMAKE_CURRENT_SOURCE_DIR
}
)
if
(
NOT WIN32
)
# Allow targets depending on ACG find the autogenerated header files
target_include_directories
(
ACG PUBLIC
${
CMAKE_CURRENT_BINARY_DIR
}
/ACG_autogen/include
)
else
()
# Allow targets depending on ACG find the autogenerated header files
target_include_directories
(
ACG PUBLIC
$<$<CONFIG:Debug>:
${
CMAKE_CURRENT_BINARY_DIR
}
/ACG_autogen/include_Debug/>
$<$<CONFIG:Release>:
${
CMAKE_CURRENT_BINARY_DIR
}
/ACG_autogen/include_Release/>
)
endif
()
target_link_libraries
(
ACG
${
OPENMESH_LIBRARIES
}
${
QT_LIBRARIES
}
...
...
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