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
Education
Cantor
Commits
3858529a
Commit
3858529a
authored
Aug 28, 2020
by
Alexander Lohnau
💬
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix KNS deprecations
parent
06ad3328
Pipeline
#32230
passed with stage
in 19 minutes and 40 seconds
Changes
11
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
11 deletions
+11
-11
CMakeLists.txt
CMakeLists.txt
+1
-1
src/CMakeLists.txt
src/CMakeLists.txt
+1
-1
src/backends/R/CMakeLists.txt
src/backends/R/CMakeLists.txt
+1
-1
src/backends/kalgebra/CMakeLists.txt
src/backends/kalgebra/CMakeLists.txt
+1
-1
src/backends/lua/CMakeLists.txt
src/backends/lua/CMakeLists.txt
+1
-1
src/backends/maxima/CMakeLists.txt
src/backends/maxima/CMakeLists.txt
+1
-1
src/backends/octave/CMakeLists.txt
src/backends/octave/CMakeLists.txt
+1
-1
src/backends/python/CMakeLists.txt
src/backends/python/CMakeLists.txt
+1
-1
src/backends/qalculate/CMakeLists.txt
src/backends/qalculate/CMakeLists.txt
+1
-1
src/backends/sage/CMakeLists.txt
src/backends/sage/CMakeLists.txt
+1
-1
src/backends/scilab/CMakeLists.txt
src/backends/scilab/CMakeLists.txt
+1
-1
No files found.
CMakeLists.txt
View file @
3858529a
...
...
@@ -11,7 +11,7 @@ set (RELEASE_SERVICE_VERSION "${RELEASE_SERVICE_VERSION_MAJOR}.${RELEASE_SERVICE
project
(
cantor VERSION
${
RELEASE_SERVICE_VERSION
}
)
set
(
KF5_MIN_VERSION
"5.
49
.0"
)
set
(
KF5_MIN_VERSION
"5.
57
.0"
)
find_package
(
ECM 5.15.0 REQUIRED CONFIG
)
set
(
CMAKE_MODULE_PATH
${
cantor_SOURCE_DIR
}
/cmake
${
CMAKE_MODULE_PATH
}
${
ECM_MODULE_PATH
}
${
ECM_KDE_MODULE_DIR
}
)
...
...
src/CMakeLists.txt
View file @
3858529a
...
...
@@ -45,7 +45,7 @@ target_link_libraries(cantor KF5::Parts KF5::NewStuff KF5::ConfigCore KF5::CoreA
install
(
TARGETS cantor
${
KDE_INSTALL_TARGETS_DEFAULT_ARGS
}
)
install
(
PROGRAMS org.kde.cantor.desktop DESTINATION
${
KDE_INSTALL_APPDIR
}
)
install
(
FILES cantor_shell.rc DESTINATION
${
KDE_INSTALL_KXMLGUI5DIR
}
/cantor
)
install
(
FILES cantor.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
#########################################################################
# KPART SECTION
...
...
src/backends/R/CMakeLists.txt
View file @
3858529a
...
...
@@ -38,4 +38,4 @@ if(BUILD_TESTING)
)
endif
(
BUILD_TESTING
)
install
(
FILES cantor_r.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_r.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
src/backends/kalgebra/CMakeLists.txt
View file @
3858529a
...
...
@@ -19,4 +19,4 @@ add_backend(kalgebrabackend ${KAlgebraBackend_SRCS})
target_link_libraries
(
cantor_kalgebrabackend KF5::Analitza KF5::AnalitzaGui
)
install
(
FILES cantor_kalgebra.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_kalgebra.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
src/backends/lua/CMakeLists.txt
View file @
3858529a
...
...
@@ -31,4 +31,4 @@ if(BUILD_TESTING)
)
endif
(
BUILD_TESTING
)
install
(
FILES cantor_lua.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_lua.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
src/backends/maxima/CMakeLists.txt
View file @
3858529a
...
...
@@ -29,5 +29,5 @@ if(BUILD_TESTING)
)
endif
()
install
(
FILES cantor_maxima.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_maxima.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
install
(
FILES cantor-initmaxima.lisp DESTINATION
${
KDE_INSTALL_DATADIR
}
/cantor/maximabackend
)
src/backends/octave/CMakeLists.txt
View file @
3858529a
...
...
@@ -49,6 +49,6 @@ if(BUILD_TESTING)
)
endif
(
BUILD_TESTING
)
install
(
FILES cantor_octave.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_octave.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
install
(
FILES graphic_packages.xml DESTINATION
${
KDE_INSTALL_DATADIR
}
/cantor/octave
)
src/backends/python/CMakeLists.txt
View file @
3858529a
...
...
@@ -48,7 +48,7 @@ if(BUILD_TESTING)
)
endif
(
BUILD_TESTING
)
install
(
FILES cantor_python.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_python.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
install
(
FILES pythonbackend.kcfg DESTINATION
${
KDE_INSTALL_KCFGDIR
}
)
install
(
TARGETS cantor_pythonbackend DESTINATION
${
KDE_INSTALL_TARGETS_DEFAULT_ARGS
}
)
...
...
src/backends/qalculate/CMakeLists.txt
View file @
3858529a
...
...
@@ -28,4 +28,4 @@ else()
target_link_libraries
(
cantor_qalculatebackend cantorlibs
${
QALCULATE_LIBRARIES
}
)
endif
()
install
(
FILES cantor_qalculate.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_qalculate.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
src/backends/sage/CMakeLists.txt
View file @
3858529a
...
...
@@ -29,7 +29,7 @@ if(BUILD_TESTING)
)
endif
()
install
(
FILES cantor_sage.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_sage.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
install
(
PROGRAMS cantor-execsage
...
...
src/backends/scilab/CMakeLists.txt
View file @
3858529a
...
...
@@ -30,4 +30,4 @@ if(BUILD_TESTING)
)
endif
(
BUILD_TESTING
)
install
(
FILES cantor_scilab.knsrc DESTINATION
${
KDE_INSTALL_
CONF
DIR
}
)
install
(
FILES cantor_scilab.knsrc DESTINATION
${
KDE_INSTALL_
KNSRC
DIR
}
)
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