How to create a project using Polyscope?
----------------------------------------

1. Get Polyscope source files with the following command:
   >git clone --recurse-submodules https://github.com/nmwsharp/polyscope.git

2. Create a directory named "polyscope-build".
3. Open x86 Native Tools Command Prompt for VS 2017 (or higher). Generate solution files with the following cmake commands:
   >cd E:\Polyscope\polyscope-build
   >cmake ..\polyscope

4. Open polyscope.sln and rebuild the solution.
5. Create your project in VS 2017. Right click on solution, select Add > Existing Project and select polyscope.sln.
   Note: In the "Add Existing Project" window, select "Solution Files (*.sln)" to be able to see polyscope.sln.

6. Right click on your project and select Properties. Fill the following parts:
   - C/C++ > General > Additional Include Directories
   E:\Polyscope\polyscope\include
   E:\Polyscope\polyscope\deps\glm
   E:\Polyscope\polyscope\deps\imgui\imgui
   E:\EigenLib
   E:\Spectra\spectra-1.0.0\include

E:\Polyscope\polyscope\include;E:\Polyscope\polyscope\deps\glm;E:\Polyscope\polyscope\deps\imgui\imgui;E:\EigenLib;E:\Spectra\spectra-1.0.0\include

   - Linker > General > Additional Library Directories
   E:\Polyscope\polyscope-build\src\Debug
   E:\Polyscope\polyscope-build\deps\imgui\Debug
   E:\Polyscope\polyscope-build\deps\glfw\src\Debug
   E:\Polyscope\polyscope-build\deps\stb\Debug
   E:\Polyscope\polyscope-build\deps\glad\src\Debug

E:\Polyscope\polyscope-build\src\Debug;E:\Polyscope\polyscope-build\deps\imgui\Debug;E:\Polyscope\polyscope-build\deps\glfw\src\Debug;E:\Polyscope\polyscope-build\deps\stb\Debug;E:\Polyscope\polyscope-build\deps\glad\src\Debug

E:\Polyscope\polyscope-build\src\Release;E:\Polyscope\polyscope-build\deps\imgui\Release;E:\Polyscope\polyscope-build\deps\glfw\src\Release;E:\Polyscope\polyscope-build\deps\stb\Release;E:\Polyscope\polyscope-build\deps\glad\src\Release

   - Linker > Input > Additional Dependencies
   polyscope.lib
   imgui.lib
   glfw3.lib
   stb.lib
   glad.lib

polyscope.lib;imgui.lib;glfw3.lib;stb.lib;glad.lib;
