CMake based build system.

Some people might find this handly
This commit is contained in:
ASDF
2017-07-22 19:45:36 -04:00
committed by Benjamin N. summerton
parent 0fc1323c80
commit e173db19f7
14 changed files with 416 additions and 2 deletions

View File

@ -332,7 +332,7 @@ else
ifeq ($(PLATFORM_OS),LINUX)
# compile raylib to shared library version for GNU/Linux.
# WARNING: you should type "make clean" before doing this target
$(CC) -shared -o $(OUTPUT_PATH)/libraylib.so $(OBJS) -lglfw3 -lGL -lopenal -lm -lpthread -ldl
$(CC) -shared -o $(OUTPUT_PATH)/libraylib.so $(OBJS) -lglfw -lGL -lopenal -lm -lpthread -ldl
@echo "raylib shared library generated (libraylib.so)!"
endif
ifeq ($(PLATFORM_OS),OSX)