Installation
Installation
System Requirements
- C++17 compatible compiler (GCC 9+, Clang 10+, MSVC 2019+)
- CMake 3.16+
- vcpkg (optional, for dependency management)
Build from Source
1. Clone Repository
git clone https://github.com/Okysu/NovaMark.git
cd NovaMark2. Install Dependencies
Using vcpkg:
# Install vcpkg (if not already installed)
git clone https://github.com/Microsoft/vcpkg.git
./vcpkg/bootstrap-vcpkg.sh
# Install dependencies
./vcpkg/vcpkg install3. Build Project
# Configure
cmake -B build -S . -DCMAKE_TOOLCHAIN_FILE=[vcpkg]/scripts/buildsystems/vcpkg.cmake
# Build
cmake --build build --config Release4. Run Tests
ctest --test-dir build --output-on-failureVerify Installation
./build/src/cli/nova-cli --versionThe output should display version information.
Next Steps
- Quick Start - Create your first game
Last updated on