Procházet zdrojové kódy

added the CMakeLists.txt

Stasik0 před 10 roky
rodič
revize
714360a8f4
2 změnil soubory, kde provedl 13 přidání a 1 odebrání
  1. 12 0
      CMakeLists.txt
  2. 1 1
      certs/create_self-signed.sh

+ 12 - 0
CMakeLists.txt

@@ -58,6 +58,18 @@ endif(CMAKE_COMPILER_IS_GNUCC)
 set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/CMakeModules")
 set(generate_src_options) # the options for the tools that generate code from xml-schema definitions
 
+## self-signed certificates
+option(ENABLE_SELFSIGNED "Enable self-signed certificates" OFF)
+if(ENABLE_SELFSIGNED)
+    message(STATUS "Enabling self-signed certificates")
+    SET(lib_sources ${lib_sources} ${PROJECT_BINARY_DIR}/localhost.der)
+    add_custom_command(OUTPUT ${PROJECT_BINARY_DIR}/localhost.der
+                   COMMAND sh ${PROJECT_SOURCE_DIR}/certs/create_self-signed.sh ${PROJECT_BINARY_DIR}
+                   DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/certs/create_self-signed.sh
+                           ${CMAKE_CURRENT_SOURCE_DIR}/certs/localhost.cnf)
+endif(ENABLE_SELFSIGNED)
+
+
 ## auto-generate all types or only the relevant subset?
 option(TYPES_ONLY_NEEDED "Include only compile-needed types" OFF)
 if(TYPES_ONLY_NEEDED)

+ 1 - 1
certs/create_self-signed.sh

@@ -14,7 +14,7 @@ openssl req \
     -new \
     -newkey rsa:1024 \
     -nodes \
-    -subj "/C=DE/ST=/L=/O=open62541/CN=www.open62541.org" \
+    -subj "/C=DE/ST=/L=/O=open62541/CN=open62541Server@localhost" \
     -config localhost.cnf \
     -keyout localhost.key \
     -out localhost.csr