I would prefer cmake, it's platform, compiler and even build tool independent. From cmake you can generate makefiles, ninja build files, visual studio projects and so on. Furthermore it can assist with dependencies
klimi
so not makefile?
olli
If you use cmake you can generate your makefiles if you want to. But you are not limited to using them. As mentioned you can use multiple build tools such as ninja , msbuild
CXX = g++
BIN = bin
SRC = src
INC = include
LIBS = -lsfml-graphics -lsfml-window -lsfml-system
FLAGS = -std=c++14 -Wall
TARGET = BlueNeko
all:
$(CXX) $(SRC)/* -o $(BIN)/$(TARGET)
Илья
Do you advise books C#?
Sorry, my English bad
klimi
no
Dima
admin asks how to compile a project -.-
olli
You can use cmake even to clone a repository, download and extract files and many more things. A single cmake can be enough for your whole build process including automatic documentation generation