aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2017-09-04 16:32:43 -0500
committerBrent Cook <bcook@openbsd.org>2017-09-04 16:32:43 -0500
commitc53c374f8373bc22e27ede303a2b276a42c69192 (patch)
tree3c4242a3a179c23803348cf91b0c6d20c66c4d8f
parentfa1c4696018bdf052007e171040262500724f1b9 (diff)
downloadportable-2.6.1.tar.gz
portable-2.6.1.tar.bz2
portable-2.6.1.zip
update VS prerequisites, refer to autogen.sh morev2.6.1
-rw-r--r--README.md17
1 files changed, 10 insertions, 7 deletions
diff --git a/README.md b/README.md
index f64409d..2bfd655 100644
--- a/README.md
+++ b/README.md
@@ -71,8 +71,10 @@ building. _Note: Your build will fail if you do not follow these instructions! I
71 71
72## Steps that apply to all builds ## 72## Steps that apply to all builds ##
73 73
74Once you have a source tree using git or by downloading from an OpenBSD mirror, 74Once you have a source tree, either by downloaded using git and having
75run these commands to build and install the package on most systems: 75run the autogen.sh script above, or by downloading a release distribution from
76an OpenBSD mirror, run these commands to build and install the package on most
77systems:
76 78
77```sh 79```sh
78./configure # see ./configure --help for configuration options 80./configure # see ./configure --help for configuration options
@@ -122,9 +124,9 @@ should work. See README.windows for more information
122 124
123#### Windows - Visual Studio #### 125#### Windows - Visual Studio ####
124 126
125LibreSSL builds using the CMake target "Visual Studio 12 2013", and may build 127LibreSSL builds using the CMake target "Visual Studio 12 2013" and newer. To
126against older/newer targets as well. To generate a Visual Studio project, 128generate a Visual Studio project, install CMake, enter the LibreSSL source
127install CMake, enter the LibreSSL source directory and run: 129directory and run:
128 130
129```sh 131```sh
130 mkdir build-vs2013 132 mkdir build-vs2013
@@ -132,8 +134,9 @@ install CMake, enter the LibreSSL source directory and run:
132 cmake -G"Visual Studio 12 2013" .. 134 cmake -G"Visual Studio 12 2013" ..
133``` 135```
134 136
135This will generate a LibreSSL.sln file that you can incorporate into other 137Replace "Visual Studion 12 2013" with whatever version of Visual Studio you
136projects or build by itself. 138have installed. This will generate a LibreSSL.sln file that you can incorporate
139into other projects or build by itself.
137 140
138#### Cmake - Additional Options #### 141#### Cmake - Additional Options ####
139 142