summaryrefslogtreecommitdiffstats
path: root/cmake/SignJar.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'cmake/SignJar.cmake')
-rw-r--r--cmake/SignJar.cmake30
1 files changed, 0 insertions, 30 deletions
diff --git a/cmake/SignJar.cmake b/cmake/SignJar.cmake
deleted file mode 100644
index abc35ba6..00000000
--- a/cmake/SignJar.cmake
+++ /dev/null
@@ -1,30 +0,0 @@
-if(NOT Java_PATH)
- message(FATAL_ERROR "Java_PATH must be defined")
-endif()
-
-if(NOT JAR_FILE)
- message(FATAL_ERROR "JAR_FILE must be defined")
-endif()
-
-message(STATUS "Signing ${JAR_FILE}")
-
-set(KEYTOOL "${Java_PATH}/keytool")
-set(JARSIGNER "${Java_PATH}/jarsigner")
-
-file(REMOVE tigervnc.keystore)
-execute_process(COMMAND
- ${KEYTOOL} -genkey -alias TigerVNC -keystore tigervnc.keystore -keyalg RSA
- -storepass tigervnc -keypass tigervnc -validity 7300
- -dname "CN=TigerVNC, OU=Software Development, O=The TigerVNC Project, L=Austin, S=Texas, C=US"
- RESULT_VARIABLE RESULT OUTPUT_VARIABLE OUTPUT ERROR_VARIABLE ERROR)
-if(NOT RESULT EQUAL 0)
- message(FATAL_ERROR "${KEYTOOL} failed:\n${ERROR}")
-endif()
-execute_process(COMMAND
- ${JARSIGNER} -keystore tigervnc.keystore
- -storepass tigervnc -keypass tigervnc ${JAR_FILE} TigerVNC
- RESULT_VARIABLE RESULT OUTPUT_VARIABLE OUTPUT ERROR_VARIABLE ERROR)
-if(NOT RESULT EQUAL 0)
- message(FATAL_ERROR "${JARSIGNER} failed:\n${ERROR}")
-endif()
-file(REMOVE tigervnc.keystore)