Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Education
Artikulate
Commits
215ba2cf
Commit
215ba2cf
authored
Dec 15, 2013
by
Andreas Cord-Landwehr
Browse files
Avoid CMake warnings for policy CMP0022.
This change requires CMake to be at least 2.8.9.
parent
c6770681
Changes
2
Hide whitespace changes
Inline
Side-by-side
liblearnerprofile/src/CMakeLists.txt
View file @
215ba2cf
...
...
@@ -34,8 +34,11 @@ set( learnerprofile_LIB_SRCS
kde4_add_library
(
learnerprofile SHARED
${
learnerprofile_LIB_SRCS
}
)
target_link_libraries
(
learnerprofile
${
KDE4_KDECORE_LIBS
}
${
QT_QTSQL_LIBRARY
}
target_link_libraries
(
learnerprofile
LINK_PRIVATE
${
KDE4_KDECORE_LIBS
}
${
QT_QTSQL_LIBRARY
}
)
set_target_properties
(
learnerprofile
...
...
src/CMakeLists.txt
View file @
215ba2cf
...
...
@@ -158,8 +158,9 @@ kde4_add_ui_files(artikulateCore_SRCS
kde4_add_kcfg_files
(
artikulateCore_SRCS settings.kcfgc
)
kde4_add_library
(
artikulatecore SHARED
${
artikulateCore_SRCS
}
)
target_link_libraries
(
artikulatecore
learnerprofile
${
artikulateCoreTargetLibs
}
LINK_PRIVATE
learnerprofile
${
artikulateCoreTargetLibs
}
)
set_target_properties
(
artikulatecore
PROPERTIES VERSION
${
GENERIC_LIB_VERSION
}
...
...
@@ -200,8 +201,9 @@ kde4_add_ui_files(artikulate_SRCS
kde4_add_kcfg_files
(
artikulate_SRCS settings.kcfgc
)
kde4_add_executable
(
artikulate
${
artikulate_SRCS
}
)
target_link_libraries
(
artikulate
learnerprofile
${
artikulateTargetLibs
}
LINK_PRIVATE
learnerprofile
${
artikulateTargetLibs
}
)
install
(
FILES artikulate.kcfg DESTINATION
${
KCFG_INSTALL_DIR
}
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment