Skip to content

Commit 1684bf5

Browse files
authored
update -DCMAKE_PREFIX_PATH to -DCMAKE_INSTALL_PREFIX (aws#2716)
1 parent ab6dbdf commit 1684bf5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ the development efforts by submitting pull requests and sending us feedback and
2424
* Amazon Linux
2525
* Windows
2626
* Mac
27-
27+
2828
### Building From Source:
2929

3030
#### To create an **out-of-source build**:
@@ -42,11 +42,12 @@ the development efforts by submitting pull requests and sending us feedback and
4242
cd <BUILD_DIR>
4343
cmake <path-to-root-of-this-source-code> \
4444
-DCMAKE_BUILD_TYPE=Debug \
45-
-DCMAKE_PREFIX_PATH=<path-to-install> \
45+
-DCMAKE_INSTALL_PREFIX=<path-to-install> \
4646
-DBUILD_ONLY="s3"
4747
cmake --build . --config=Debug
4848
cmake --install . --config=Debug
4949
```
50+
5051
**_NOTE:_** BUILD_ONLY is an optional flag used to list only the services you are using. Building the whole sdk can take a long time. Also check out the list of [CMake parameters](./docs/CMake_Parameters.md)
5152

5253
#### Other Dependencies:

0 commit comments

Comments
 (0)