- The Modern C++ Challenge
- Marius Bancila
- 168字
- 2021-06-25 22:01:20
How to generate projects for Visual Studio 2017
Do the following in order to generate Visual Studio 2017 projects to target the x86 platform:
- Open a command prompt and go to the build directory in the source code root folder.
- Execute the following CMake command:
cmake -G "Visual Studio 15 2017" .. -DCMAKE_USE_WINSSL=ON -DCURL_WINDOWS_SSPI=ON -DCURL_LIBRARY=libcurl -DCURL_INCLUDE_DIR=..\libs\curl\include -DBUILD_TESTING=OFF -DBUILD_CURL_EXE=OFF -DUSE_MANUAL=OFF
- After completion, the Visual Studio solution can be found at build/cppchallenger.sln.
If you want to target the x64 platform instead, use the generator called "Visual Studio 15 2017 Win64". Visual Studio 2017 15.4 supports both filesystem (as an experimental library) and std::optional. If you use a previous version, or just want to use the Boost libraries instead, you can generate the projects using the following command, after you properly install Boost:
cmake -G "Visual Studio 15 2017" .. -DCMAKE_USE_WINSSL=ON -DCURL_WINDOWS_SSPI=ON -DCURL_LIBRARY=libcurl -DCURL_INCLUDE_DIR=..\libs\curl\include -DBUILD_TESTING=OFF -DBUILD_CURL_EXE=OFF -DUSE_MANUAL=OFF -DBOOST_FILESYSTEM=ON -DBOOST_OPTIONAL=ON -DBOOST_INCLUDE_DIR=<path_to_headers> -DBOOST_LIB_DIR=<path_to_libs>
Make sure that the paths to the headers and static library files do not include trailing backslashes (i.e. \).
推薦閱讀
- Python科學計算(第2版)
- The Android Game Developer's Handbook
- 移動UI設計(微課版)
- Java Web基礎與實例教程(第2版·微課版)
- 簡單高效LATEX
- Eclipse Plug-in Development:Beginner's Guide(Second Edition)
- Elasticsearch for Hadoop
- Mathematica Data Analysis
- Extending Puppet(Second Edition)
- Python機器學習之金融風險管理
- C++ Fundamentals
- 從零開始:UI圖標設計與制作(第3版)
- Tableau Desktop可視化高級應用
- 邊玩邊學Scratch3.0少兒趣味編程
- Scrapy網絡爬蟲實戰