Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenFlipper
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
OpenFlipper-Free
OpenFlipper
Compare Revisions
7ab43c37098ad0a2ef7f3706b505acd545c35d8d...0a58d3b27ff2696835648b70639987d3dea38369
Source
0a58d3b27ff2696835648b70639987d3dea38369
Select Git revision
...
Target
7ab43c37098ad0a2ef7f3706b505acd545c35d8d
Select Git revision
Compare
Commits (1)
Do not search for ui files as they are handled by autouic
· 0a58d3b2
Jan Möbius
authored
Jan 10, 2019
0a58d3b2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
2 deletions
+1
-2
libs_required/ACG/CMakeLists.txt
libs_required/ACG/CMakeLists.txt
+1
-2
No files found.
libs_required/ACG/CMakeLists.txt
View file @
0a58d3b2
...
...
@@ -107,14 +107,13 @@ endif ()
# collect all header,source and ui files
acg_append_files
(
headers
"*.hh"
${
directories
}
)
acg_append_files
(
sources
"*.cc"
${
directories
}
)
acg_append_files
(
ui
"*.ui"
${
directories
}
)
acg_append_files
(
qrc
"*.qrc"
${
directories
}
.
)
# remove template cc files from source file list
acg_drop_templates
(
sources
)
if
(
QT5_FOUND
)
acg_add_library
(
ACG SHARED
${
ui
}
${
sources
}
${
headers
}
${
qrc
}
)
acg_add_library
(
ACG SHARED
${
sources
}
${
headers
}
${
qrc
}
)
endif
()
if
(
NOT WIN32
)
...
...