diff options
author | Brent Cook <bcook@openbsd.org> | 2017-07-09 05:06:06 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2017-07-09 05:06:06 -0500 |
commit | 0dbae37735a395e3c378ac944842e359f8087d41 (patch) | |
tree | 18aaf9fa1665455886fc171edbb8857ef5c35a21 /README.md | |
parent | c18852f650a3cb258e10222695a31ed5c929ab23 (diff) | |
parent | 0e82f22d16dc4c45bd45f9a994a30fc7435d430b (diff) | |
download | portable-0dbae37735a395e3c378ac944842e359f8087d41.tar.gz portable-0dbae37735a395e3c378ac944842e359f8087d41.tar.bz2 portable-0dbae37735a395e3c378ac944842e359f8087d41.zip |
Land #324, Add option LIBRESSL_SKIP_INSTALL
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -131,3 +131,15 @@ install CMake, enter the LibreSSL source directory and run: | |||
131 | 131 | ||
132 | This will generate a LibreSSL.sln file that you can incorporate into other | 132 | This will generate a LibreSSL.sln file that you can incorporate into other |
133 | projects or build by itself. | 133 | projects or build by itself. |
134 | |||
135 | #### Cmake - Additional Options #### | ||
136 | |||
137 | | Option Name | Default | Description | ||
138 | | ------------ | -----: | ------ | ||
139 | | LIBRESSL_SKIP_INSTALL | OFF | allows skipping install() rules. Can be specified from command line using <br>```-DLIBRESSL_SKIP_INSTALL=ON``` | | ||
140 | | ENABLE_ASM | ON | builds assembly optimized rules. | | ||
141 | | ENABLE_EXTRATESTS | OFF | Enable extra tests that may be unreliable on some platforms | | ||
142 | | ENABLE_NC | OFF | Enable installing TLS-enabled nc(1) | | ||
143 | | ENABLE_VSTEST | OFF | Enable test on Visual Studio | | ||
144 | | OPENSSLDIR | Blank | Set the default openssl directory. Can be specified from command line using <br>```-DOPENSSLDIR=<dirname>``` | | ||
145 | |||