Template for Starlet Game Projects
This project uses CMake. Follow these steps to build:
git clone https://github.com/masonlet/starlet-starter.git
cd starlet-startermkdir build
cd build
cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..-DCMAKE_EXPORT_COMPILE_COMMANDS=ON flag generates a compile_commands.json file
Can be safely omitted on Windows if you're using Visual Studio
-
Linux:
make
-
Windows:
cmake --build .Or open the generated
.slnfile in Visual Studio and build the solution.