-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Document sample commands to generate project files using CMake on Windows #22
Comments
@faheel Well for Visual Studio, I recommend that you do something similar to my Appveyor script in my C++ project template. The script I use is: mkdir build && cd build
cmake -D<options> -G<VS Generator> ..
cmake --build . --config <configuration> # Default build
cmake --build . --target <target> --config <configuration> # Other targets, such as
# coverage or test. For testing, ctest is a better option. In the script above,
I hope this helps and let me know what you think! |
@arnavb Thanks a lot for the detailed info! I'll try running these commands when I log on to Windows next time. |
Hello @faheel |
@dnb02 You can try out what arnavb suggested above, and also checkout #38. It would be great if you could include these in the existing GitHub action and see if it passes on Windows.
I still haven't logged in to a Windows machine after 5 years 😄 |
In the Development section in README, add sample command(s) for properly generating project files using CMake for some popular Windows IDE, such as Visual Studio.
The text was updated successfully, but these errors were encountered: