euler-set-solver - recursive descent parser that design for evaluating and solving expressions of the set theory.
euler-set-solver written on C++/Cli which means(for now, at least) that you can only use this project on Windows with the Visual Studio based building tools.
- Make sure that you have successfully install the Visual Studio or Visual Studio build tools with wthis components:
- "Desktop development with C++";
- ".NET Framework targeting pack" and ".NET Framework SDK" (any version starting from v4.0);
- "C++ core features"
- "C++/CLI support for build tools" (any version of build tools starting from v140);
- "Windows 10 SDK".
- After that, you can configure the project:
$ cmake -B ./build -G <preferred generator>
OR
$ task configure -- <preferred generator>
Note that 'preferred generator' must be a Visual Studio based generator, for example: "Visual Studio 15 2017"
For configuring with the "Visual Studio 16 2019" generator, you can use:
$ task vsconfigure
- Run the build command or open Visual Studio solution in the ./build directory for manual build:
$ cmake --build ./build --config <Debug|Release>
OR
$ task build_<debug|release>
- You've done! The builded binary file available in the build directory.
To run project tests:
- Configure the project:
$ cmake -B ./build -G <preferred generator>
OR
$ task configure -- <preferred generator>
- Run tests command:
$ cmake --build ./build --config <Debug|Release> --target run-tests
OR
$ task test
This project is licensed under the MIT License.
My thanks to the developers of Colorful.Console.