Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CMakeSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"buildCommandArgs": "-v",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"cmakeCommandArgs": "",
"cmakeToolchain": "${projectDir}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake",
"configurationType": "Debug",
"ctestCommandArgs": "",
"generator": "Ninja",
Expand All @@ -17,6 +18,7 @@
"buildCommandArgs": "-v",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"cmakeCommandArgs": "",
"cmakeToolchain": "${projectDir}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake",
"configurationType": "Debug",
"ctestCommandArgs": "",
"generator": "Ninja",
Expand All @@ -29,6 +31,7 @@
"buildCommandArgs": "-v",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"cmakeCommandArgs": "",
"cmakeToolchain": "${projectDir}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake",
"configurationType": "Debug",
"ctestCommandArgs": "",
"generator": "Ninja",
Expand All @@ -41,6 +44,7 @@
"buildCommandArgs": "-v",
"buildRoot": "${projectDir}\\out\\build\\${name}",
"cmakeCommandArgs": "",
"cmakeToolchain": "${projectDir}\\vcpkg\\scripts\\buildsystems\\vcpkg.cmake",
"configurationType": "Debug",
"ctestCommandArgs": "",
"generator": "Ninja",
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,8 +152,7 @@ acquire this dependency.
3. Open a terminal in the IDE with `` Ctrl + ` `` (by default) or press on "View" in the top bar, and then "Terminal".
4. In the terminal, invoke `git submodule update --init --progress llvm-project vcpkg`
5. In the terminal, invoke `.\vcpkg\bootstrap-vcpkg.bat`
6. In the terminal, invoke `.\vcpkg\vcpkg.exe install boost-math:x86-windows boost-math:x64-windows`
7. Choose the architecture you wish to build in the IDE, and build as you would any other project. All necessary CMake
6. Choose the architecture you wish to build in the IDE, and build as you would any other project. All necessary CMake
settings are set by `CMakeSettings.json`.

# How To Build With A Native Tools Command Prompt
Expand All @@ -168,7 +167,6 @@ acquire this dependency.
5. `cd STL`
6. `git submodule update --init --progress llvm-project vcpkg`
7. `.\vcpkg\bootstrap-vcpkg.bat`
8. `.\vcpkg\vcpkg.exe install boost-math:x86-windows boost-math:x64-windows`

To build the x86 target:

Expand Down
11 changes: 11 additions & 0 deletions vcpkg.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"name": "stl",
"version-string": "143",
"builtin-baseline": "1257354a3ab0bebd8abe95281ca561537853578c",
"dependencies": [
{
"name": "boost-math",
"version>=": "1.76.0"
}
]
}