Skip to content

BlockProject3D/Framework

Repository files navigation

BlockProject Framework

High-level C++ framework, used in BlockProject 3D Engine

Project Status

Build Status codecov Codacy Badge

Building

To acomodate a bug with Markdown the note is before the requirements.
Note:
The test tool is automatically built by the root CMake.
Requirements:

  • CMake for every platforms
  • Visual Studio 2015/2017/2019 for windows builds
  • GCC or Clang for Linux and Mac builds
  • C++11 compliant compiler

Windows

Under GitBash / Powershell

  • mkdir build
  • cd build
  • cmake -G "Visual Studio 15 Win64" ..
  • cmake --build .

Linux / Mac

Under bash / other shells

  • mkdir build
  • cd build
  • cmake -G "Unix Makefiles" ..
  • cmake --build .

Running

The test tool can be found under the following directory ${CMAKE_CURRENT_BINARY_DIR}/.
Please run BPF.Tests using a terminal.