EntityComponentMetaSystem/README.md
2017-06-10 22:17:37 +09:00

17 lines
322 B
Markdown

# Compiling
Create a build directory.
`mkdir build`
Generate makefile with CMake.
`cd build`
`cmake -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=True ../src`
Build the project.
`make`
Optionally install the project to where CMAKE\_INSTALL\_PREFIX was set.
`make install`