Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Games
Kubrick
Commits
44f6f39d
Commit
44f6f39d
authored
Jun 02, 2017
by
Andrius Štikonas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Drop unused dependencies.
parent
7de59769
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
7 deletions
+6
-7
CMakeLists.txt
CMakeLists.txt
+3
-6
src/CMakeLists.txt
src/CMakeLists.txt
+2
-0
src/main.cpp
src/main.cpp
+1
-1
No files found.
CMakeLists.txt
View file @
44f6f39d
...
...
@@ -13,20 +13,17 @@ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS
ConfigWidgets
CoreAddons
Crash
DBusAddons
I18n
ItemModels
DocTools
KDELibs4Support
I18n
KIO
NotifyConfig
WidgetsAddons
XmlGui
)
find_package
(
KF5KDEGames 4.9.0 REQUIRED
)
find_package
(
OpenGL
)
set_package_properties
(
OpenGL PROPERTIES DESCRIPTION
"API for developing portable, interactive 2D and 3Dgraphics applications"
TYPE REQUIRED PURPOSE
"Kubrick will not be built and KSudoku will not have Roxdoku support without OpenGL."
)
find_package
(
OpenGL REQUIRED
)
include
(
FeatureSummary
)
include
(
ECMAddAppIcon
)
...
...
src/CMakeLists.txt
View file @
44f6f39d
...
...
@@ -28,8 +28,10 @@ target_link_libraries(kubrick
Qt5::OpenGL
Qt5::Svg
KF5::Crash
KF5::ConfigCore
KF5::KDELibs4Support
KF5::KIOCore
KF5::XmlGui
KF5KDEGames
${
OPENGL_gl_LIBRARY
}
${
OPENGL_glu_LIBRARY
}
...
...
src/main.cpp
View file @
44f6f39d
...
...
@@ -40,7 +40,7 @@ int main(int argc, char **argv)
KAboutData
about
(
"kubrick"
,
i18n
(
"Kubrick"
),
version
,
i18n
(
description
),
KAboutLicense
::
GPL
,
i18n
(
"
(C)
2008 Ian Wadham"
),
i18n
(
"
©
2008 Ian Wadham"
),
"http://kde.org/applications/games/kubrick/"
);
about
.
addAuthor
(
i18n
(
"Ian Wadham"
),
i18n
(
"Author"
),
"iandw.au@gmail.com"
);
...
...
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