Prism is a preprocessor that uses Prism pseudo language. It is written in C++ and the idea is to have a dynamic preprocessor that can be used to work on any kind of file.
- Visual Studio 2022 Community Edition with the C++ feature set
- One of the Windows SDKs that comes with Visual Studio, for example the current Windows 10 version 10.0.19041.0
- The MSVC v142 - VS 2019 C++ build toolscomponent of Visual Studio
- Cmake (can be installed via chocolatey or manually)
# Setup cmake project
& 'C:\Program Files\CMake\bin\cmake' -S . -B "build/x64" -G "Visual Studio 17 2022" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Debug
# or for VS2019
& 'C:\Program Files\CMake\bin\cmake' -S . -B "build/x64" -G "Visual Studio 16 2019" -T v142 -A x64 -DCMAKE_BUILD_TYPE=Debug
# Compile project
& 'C:\Program Files\CMake\bin\cmake.exe' --build .\build\x64sudo apt-get install cmake ninja-build libbz2-devcmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Debug
cmake --build build-cmake -jRequires cmake, ninja-build, libbz2-dev
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Debug
cmake --build build-cmake -jRequires Xcode (or xcode-tools) && cmake, ninja (can be installed via homebrew, macports, etc)
cmake -H. -Bbuild-cmake -GNinja -DCMAKE_BUILD_TYPE=Debug
cmake --build build-cmake -j