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
Commits
cb529d73
Commit
cb529d73
authored
May 04, 2020
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed Glob from PluginLib
parent
1563b924
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
147 additions
and
18 deletions
+147
-18
PluginLib/CMakeLists.txt
PluginLib/CMakeLists.txt
+147
-18
No files found.
PluginLib/CMakeLists.txt
View file @
cb529d73
...
...
@@ -88,28 +88,157 @@ endif()
# Collect files to compile
#=======================================================
# source code directories
set
(
directories
../BasePlugin
../ACGHelper
../common
../threads
../common/bsp
../INIFile
../widgets/glWidget
../publicWidgets/objectSelectionWidget
../widgets/filePicker
../Utils/FileIO
../Utils/Memory
set
(
headers
../BasePlugin/AboutInfoInterface.hh
../BasePlugin/BackupInterface.hh
../BasePlugin/BaseInterface.hh
../BasePlugin/ContextMenuInterface.hh
../BasePlugin/FileInterface.hh
../BasePlugin/INIInterface.hh
../BasePlugin/InformationInterface.hh
../BasePlugin/KeyInterface.hh
../BasePlugin/LoadSaveInterface.hh
../BasePlugin/LoggingInterface.hh
../BasePlugin/MenuInterface.hh
../BasePlugin/MetadataInterface.hh
../BasePlugin/MouseInterface.hh
../BasePlugin/OptionsInterface.hh
../BasePlugin/PickingInterface.hh
../BasePlugin/PluginConnectionInterface.hh
../BasePlugin/PluginFunctions.hh
../BasePlugin/PluginFunctionsCore.hh
../BasePlugin/PluginFunctionsSceneGraphWidget.hh
../BasePlugin/PluginFunctionsViewControls.hh
../BasePlugin/PostProcessorInterface.hh
../BasePlugin/ProcessInterface.hh
../BasePlugin/PythonFunctions.hh
../BasePlugin/PythonFunctionsCore.hh
../BasePlugin/PythonInterface.hh
../BasePlugin/RPCInterface.hh
../BasePlugin/RPCWrappers.hh
../BasePlugin/RPCWrappersHelper.hh
../BasePlugin/RenderInterface.hh
../BasePlugin/ScriptInterface.hh
../BasePlugin/SecurityInterface.hh
../BasePlugin/SelectionInterface.hh
../BasePlugin/StatusbarInterface.hh
../BasePlugin/TextureInterface.hh
../BasePlugin/ToolbarInterface.hh
../BasePlugin/ToolboxInterface.hh
../BasePlugin/TypeInterface.hh
../BasePlugin/ViewInterface.hh
../BasePlugin/ViewModeInterface.hh
../BasePlugin/WhatsThisGenerator.hh
../ACGHelper/DrawModeConverter.hh
../common/BackupData.hh
../common/BaseBackup.hh
../common/BaseObject.hh
../common/BaseObjectCore.hh
../common/BaseObjectData.hh
../common/BaseObjectDataT_impl.hh
../common/DataTypes.hh
../common/FileTypes.hh
../common/GlobalDefines.hh
../common/GlobalOptions.hh
../common/GroupObject.hh
../common/InformationPlugins.hh
../common/OFGLWidget.hh
../common/ObjectIDPointerManagerT.hh
../common/ObjectIDPointerManagerT_impl.hh
../common/ObjectTypeDLLDefines.hh
../common/OpenFlipperQSettings.hh
../common/PluginStorage.hh
../common/RecentFiles.hh
../common/RendererInfo.hh
../common/Types.hh
../common/TypesInternal.hh
../common/UpdateType.hh
../common/ViewObjectMarker.hh
../common/ViewerProperties.hh
../common/glew_wrappers.hh
../common/perObjectData.hh
../threads/JobInfo.hh
../threads/OpenFlipperThread.hh
../INIFile/INIFile.hh
../INIFile/INIFileT_impl.hh
../widgets/glWidget/CursorPainter.hh
../widgets/glWidget/PostProcessing.hh
../widgets/glWidget/QtBaseViewer.hh
../widgets/glWidget/QtGLGraphicsScene.hh
../widgets/glWidget/QtGLGraphicsView.hh
../widgets/glWidget/QtGLViewerLayout.hh
../widgets/glWidget/QtGraphicsButton.hh
../widgets/glWidget/QtMultiViewLayout.hh
../widgets/glWidget/QtSlideWindow.hh
../widgets/glWidget/simpleGLGraphicsScene.hh
../widgets/glWidget/simpleViewer.hh
../publicWidgets/objectSelectionWidget/SelectionObjectMarker.hh
../publicWidgets/objectSelectionWidget/TreeItemObjectSelection.hh
../publicWidgets/objectSelectionWidget/TreeModelObjectSelection.hh
../publicWidgets/objectSelectionWidget/objectPickDialog.hh
../publicWidgets/objectSelectionWidget/objectSelectionWidget.hh
../widgets/filePicker/FilePicker.hh
../Utils/FileIO/NumberParsing.hh
../Utils/Memory/RAMInfo.hh
)
# collect all header,source and ui files
acg_append_files
(
headers
"*.hh"
${
directories
}
)
acg_append_files
(
sources
"*.cc"
${
directories
}
)
acg_append_files
(
ui-files
"*.ui"
${
directories
}
)
set
(
sources
../BasePlugin/PluginFunctions.cc
../BasePlugin/PluginFunctionsBaseIterator.cc
../BasePlugin/PluginFunctionsIterator.cc
../BasePlugin/PostProcessorInterface.cc
../BasePlugin/PythonFunctions.cc
../BasePlugin/RPCWrappers.cc
../BasePlugin/RPCWrappersHelper.cc
../BasePlugin/WhatsThisGenerator.cc
../ACGHelper/DrawModeConverter.cc
../common/BackupData.cc
../common/BaseBackup.cc
../common/BaseObject.cc
../common/BaseObjectCore.cc
../common/BaseObjectData.cc
../common/FileTypes.cc
../common/GlobalOptions.cc
../common/GroupObject.cc
../common/InformationPlugins.cc
../common/OpenFlipperQSettings.cc
../common/PluginStorage.cc
../common/RecentFiles.cc
../common/RendererInfo.cc
../common/Types.cc
../common/UpdateType.cc
../common/ViewerProperties.cc
../common/glew_wrappers.cc
../common/perObjectData.cc
../threads/JobInfo.cc
../threads/OpenFlipperThread.cc
../INIFile/INIFile.cc
../widgets/glWidget/CursorPainter.cc
../widgets/glWidget/PostProcessing.cc
../widgets/glWidget/QtBaseViewer.cc
../widgets/glWidget/QtBaseViewerFlyAnimation.cc
../widgets/glWidget/QtBaseViewerPicking.cc
../widgets/glWidget/QtBaseViewer_qt.cc
../widgets/glWidget/QtGLGraphicsScene.cc
../widgets/glWidget/QtGLGraphicsView.cc
../widgets/glWidget/QtGLViewerLayout.cc
../widgets/glWidget/QtGraphicsButton.cc
../widgets/glWidget/QtMultiViewLayout.cc
../widgets/glWidget/QtSlideWindow.cc
../widgets/glWidget/simpleGLGraphicsScene.cc
../widgets/glWidget/simpleViewer.cc
../publicWidgets/objectSelectionWidget/SelectionObjectMarker.cc
../publicWidgets/objectSelectionWidget/TreeItemObjectSelection.cc
../publicWidgets/objectSelectionWidget/TreeModelObjectSelection.cc
../publicWidgets/objectSelectionWidget/objectPickDialog.cc
../publicWidgets/objectSelectionWidget/objectSelectionWidget.cc
../widgets/filePicker/FilePicker.cc
../Utils/FileIO/NumberParsing.cc
../Utils/Memory/RAMInfo.cc
)
source_group
(
TREE
${
CMAKE_SOURCE_DIR
}
FILES
${
sources
}
${
headers
}
${
ui-files
}
)
source_group
(
TREE
${
CMAKE_SOURCE_DIR
}
FILES
${
sources
}
${
headers
}
)
#=======================================================
# Cleanup
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment