Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Black Dragon Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Logue
Black Dragon Viewer
Commits
2c3507a9
Commit
2c3507a9
authored
2 years ago
by
Nicky
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup plugin, create proper target for link libraries. Remove unused
variables.
parent
c7ea8804
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indra/cmake/PluginAPI.cmake
+3
-3
3 additions, 3 deletions
indra/cmake/PluginAPI.cmake
indra/llplugin/slplugin/CMakeLists.txt
+7
-8
7 additions, 8 deletions
indra/llplugin/slplugin/CMakeLists.txt
indra/media_plugins/cef/CMakeLists.txt
+0
-1
0 additions, 1 deletion
indra/media_plugins/cef/CMakeLists.txt
with
10 additions
and
12 deletions
indra/cmake/PluginAPI.cmake
+
3
−
3
View file @
2c3507a9
# -*- cmake -*-
create_target
(
ll::pluginlibraries
)
if
(
WINDOWS
)
set
(
PLUGIN_API_WINDOWS_LIBRARIES
set
_target_libraries
(
ll::pluginlibraries
wsock32
ws2_32
psapi
...
...
@@ -9,8 +11,6 @@ if (WINDOWS)
advapi32
user32
)
else
(
WINDOWS
)
set
(
PLUGIN_API_WINDOWS_LIBRARIES
""
)
endif
(
WINDOWS
)
This diff is collapsed.
Click to expand it.
indra/llplugin/slplugin/CMakeLists.txt
+
7
−
8
View file @
2c3507a9
...
...
@@ -20,10 +20,9 @@ if (DARWIN)
)
endif
(
DARWIN
)
set_source_files_properties
(
${
SLPlugin_HEADER_FILES
}
PROPERTIES HEADER_FILE_ONLY TRUE
)
if
(
SLPlugin_HEADER_FILES
)
set_source_files_properties
(
${
SLPlugin_HEADER_FILES
}
PROPERTIES HEADER_FILE_ONLY TRUE
)
list
(
APPEND SLPlugin_SOURCE_FILES
${
SLPlugin_HEADER_FILES
}
)
endif
(
SLPlugin_HEADER_FILES
)
...
...
@@ -46,11 +45,11 @@ set_target_properties(SLPlugin
endif
()
target_link_libraries
(
SLPlugin
llplugin
llmessage
llcommon
${
PLUGIN_API_WINDOWS_LIBRARIES
}
)
llplugin
llmessage
llcommon
ll::pluginlibraries
)
if
(
DARWIN
)
# Make sure the app bundle has a Resources directory (it will get populated by viewer-manifest.py later)
...
...
This diff is collapsed.
Click to expand it.
indra/media_plugins/cef/CMakeLists.txt
+
0
−
1
View file @
2c3507a9
...
...
@@ -63,7 +63,6 @@ add_library(media_plugin_cef
target_link_libraries
(
media_plugin_cef
media_plugin_base
cef::cef
${
media_plugin_cef_LINK_LIBRARIES
}
)
if
(
WINDOWS
)
...
...
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