Git commit d58abd7482fa2229a72bd43e9f206b6cac675a47 by Jonathan Riddell. Committed on 12/11/2013 at 09:41. Pushed by jriddell into branch 'frameworks'.
Note that these binaries are for non-GUI and developer user only REVIEW: 113801 M +1 -0 tier1/kjs/src/kjs/CMakeLists.txt M +1 -0 tier3/kjsembed/src/kjscmd/CMakeLists.txt M +1 -0 tier3/kross/docs/kross/man-kross.1.docbook M +1 -0 tier3/kross/src/console/CMakeLists.txt http://commits.kde.org/kdelibs/d58abd7482fa2229a72bd43e9f206b6cac675a47 diff --git a/tier1/kjs/src/kjs/CMakeLists.txt b/tier1/kjs/src/kjs/CMakeLists.txt index f2a3a6a..0350373 100644 --- a/tier1/kjs/src/kjs/CMakeLists.txt +++ b/tier1/kjs/src/kjs/CMakeLists.txt @@ -210,6 +210,7 @@ set(kjs_SRCS kjs.cpp) set (kjs_bin_OUTPUT_NAME kjs) # 'kjs_bin' because cmake doesn't like having a lib and app with the same name +# This is a developer tool, not intended for normal user installs add_executable(kjs_bin ${kjs_SRCS}) set_target_properties(kjs_bin PROPERTIES RUNTIME_OUTPUT_NAME ${kjs_bin_OUTPUT_NAME}) diff --git a/tier3/kjsembed/src/kjscmd/CMakeLists.txt b/tier3/kjsembed/src/kjscmd/CMakeLists.txt index 0cc3418..fde0c6f 100644 --- a/tier3/kjsembed/src/kjscmd/CMakeLists.txt +++ b/tier3/kjsembed/src/kjscmd/CMakeLists.txt @@ -3,6 +3,7 @@ project(kjsembed-kjscmd) set(kjscmd_SRCS kjscmd.cpp ) qt5_add_resources(kjscmd_SRCS kjscmd.qrc) +# This is a developer tool, not intended for normal user installs add_executable(kjscmd ${kjscmd_SRCS}) target_link_libraries(kjscmd Qt5::Widgets # QApplication::lastWindowClosed diff --git a/tier3/kross/docs/kross/man-kross.1.docbook b/tier3/kross/docs/kross/man-kross.1.docbook index e820fb67..e2e6dd1 100644 --- a/tier3/kross/docs/kross/man-kross.1.docbook +++ b/tier3/kross/docs/kross/man-kross.1.docbook @@ -49,6 +49,7 @@ <para><command>kross</command> executes kross scripts written in &kde; Javascript, Python, Ruby, Java and Falcon. </para> +<para>This command line tool is used for any non-GUI scripts, e.g. Calligra Sheets has some of these.</para> </refsect1> <refsect1> diff --git a/tier3/kross/src/console/CMakeLists.txt b/tier3/kross/src/console/CMakeLists.txt index 1699f25..5384e29 100644 --- a/tier3/kross/src/console/CMakeLists.txt +++ b/tier3/kross/src/console/CMakeLists.txt @@ -1,3 +1,4 @@ +#This binary is used for any non-GUI Kross scripts, e.g. Calligra Sheets has some add_executable(kross main.cpp) target_link_libraries(kross KrossCore KF5::KCoreAddons KF5::KI18n Qt5::Widgets)
