File tree 2 files changed +43
-1
lines changed
2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
1
+ # PREREQUISITES
2
+
3
+ ## C++ 11 or higher
4
+ Checkout [ C++ Compiler] ( #C++-Compiler )
5
+
6
+ ## CMake 3.1+
7
+ 1 . Download CMake3.1+ for your platform: https://cmake.org/download/
8
+
9
+ 2 . Run the Cmake Installer. Make sure you add CMake into ** PATH** .
10
+
11
+ 3 . Restart the command prompt / terminal.
12
+
13
+ ## C++ Compiler (Clang 3.9+ or GCC 4.8+ or MSVC 2015+)
14
+ 1 . Check if Clang or GCC is installed
15
+ ``` sh
16
+ g++ --version
17
+ ```
18
+ ```
19
+ clang --version
20
+ ```
21
+
22
+ ### Windows
23
+ #### MSVC
24
+ Install Visual Studio with MSVC
25
+ 1 . Download ** Visual Studio Installer**
26
+ https://visualstudio.microsoft.com/downloads/
27
+
28
+
29
+ 2 . Run the installer, check the ** Desktop development with C++** workload and select Install.
30
+
31
+ 3 . Verify your MSVC installation
32
+ * In Windows Start up Menu, try open "Developer Command Prompt for VS"
33
+
34
+ Continue with the Developer Command Prompt to install the SDK and samples.
35
+
36
+
37
+ ## FAQ
38
+
39
+ 1 . CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
40
+ CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
Original file line number Diff line number Diff line change @@ -26,11 +26,13 @@ __Jump To:__
26
26
## Installation
27
27
28
28
### Minimum Requirements
29
-
30
29
* C++ 11 or higher
31
30
* CMake 3.1+
32
31
* Clang 3.9+ or GCC 4.8+ or MSVC 2015+
33
32
33
+ [ Step-by-step instructions] ( ./PREREQUISITES.md )
34
+
35
+
34
36
### Build from source
35
37
36
38
#### Automatically Build and Install AWS Dependencies
You can’t perform that action at this time.
0 commit comments