From 225ce9bbd6cd230792eea8f6e2c39a36674c780c Mon Sep 17 00:00:00 2001 From: olszomal Date: Thu, 11 Aug 2022 12:28:27 +0200 Subject: [PATCH] update building osslsigncode for Unix-like operating systems --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 7ab4c34..f7739cd 100644 --- a/README.md +++ b/README.md @@ -52,12 +52,15 @@ You may need to use `cmake3` instead of `cmake` to complete the following steps * Navigate to the build directory and run CMake to configure the osslsigncode project and generate a native build system: ``` - mkdir build && cd build && cmake .. + mkdir build && cd build && cmake -S .. ``` with specific compile options: ``` - -Denable-strict=ON - -Denable-pedantic=ON + -DCMAKE_BUILD_TYPE=Debug + -DCMAKE_C_COMPILER=clang + -DCMAKE_PREFIX_PATH=[openssl directory];[curl directory] + -DCMAKE_INSTALL_PREFIX=[installation directory] + ``` * Then call that build system to actually compile/link the osslsigncode project (alias `make`): ``` @@ -69,7 +72,7 @@ You may need to use `cmake3` instead of `cmake` to complete the following steps ``` * Make install: ``` - sudo cmake --install . --prefix "/home/myuser/installdir" + sudo cmake --install . ``` * Make tarball (simulate autotools' `make dist`): ```