Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
Marble
Commits
99ae19f7
Commit
99ae19f7
authored
Sep 10, 2020
by
Volker Krause
Browse files
Remove mismatching endif() conditions
parent
ef77c4f8
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/apps/marble-kde/CMakeLists.txt
View file @
99ae19f7
...
...
@@ -75,7 +75,7 @@ target_link_libraries (
if
(
STATIC_BUILD AND WIN32
)
target_link_libraries
(
marble
${
QT_PLUGINS_DIR
}
/imageformats/qjpeg.lib
)
target_link_libraries
(
marble
${
QT_PLUGINS_DIR
}
/imageformats/qsvg.lib
)
endif
(
STATIC_BUILD
)
endif
()
install
(
TARGETS marble
${
KDE_INSTALL_TARGETS_DEFAULT_ARGS
}
)
install
(
PROGRAMS org.kde.marble.desktop DESTINATION
${
KDE_INSTALL_APPDIR
}
)
...
...
src/apps/marble-qt/CMakeLists.txt
View file @
99ae19f7
...
...
@@ -45,7 +45,7 @@ endif(WIN32)
if
(
STATIC_BUILD AND WIN32
)
target_link_libraries
(
marble-qt
${
QT_PLUGINS_DIR
}
/imageformats/qjpeg.lib
)
target_link_libraries
(
marble-qt
${
QT_PLUGINS_DIR
}
/imageformats/qsvg.lib
)
endif
(
STATIC_BUILD
)
endif
()
if
(
WIN32
)
install
(
TARGETS marble-qt RUNTIME DESTINATION .
)
...
...
src/apps/marble-ui/CMakeLists.txt
View file @
99ae19f7
...
...
@@ -46,4 +46,4 @@ if(STATIC_BUILD AND WIN32)
# TODO: PUBLIC or can be PRIVATE?
target_link_libraries
(
marbleui LINK_PUBLIC
${
QT_PLUGINS_DIR
}
/imageformats/qjpeg.lib
)
target_link_libraries
(
marbleui LINK_PUBLIC
${
QT_PLUGINS_DIR
}
/imageformats/qsvg.lib
)
endif
(
STATIC_BUILD
)
endif
()
Write
Preview
Supports
Markdown
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