diff options
| author | Chris Hemingway <chris.hemingway@gmail.com> | 2016-05-14 10:45:29 +0100 |
|---|---|---|
| committer | Chris Hemingway <chris.hemingway@gmail.com> | 2016-05-14 10:45:29 +0100 |
| commit | f575935ace109149277a57f6216c5df1b94eeac9 (patch) | |
| tree | 66ae60eb7034a732506fe9034f9feb91800f652c /templates/basic_game | |
| parent | b46a8005979bb626f4e7a7199932c4b85e9efb3a (diff) | |
| download | raylib-f575935ace109149277a57f6216c5df1b94eeac9.tar.gz raylib-f575935ace109149277a57f6216c5df1b94eeac9.zip | |
Fix glfw name on OSX and remove unused directory warning
Diffstat (limited to 'templates/basic_game')
| -rw-r--r-- | templates/basic_game/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/basic_game/Makefile b/templates/basic_game/Makefile index 3b2a06d0..76337490 100644 --- a/templates/basic_game/Makefile +++ b/templates/basic_game/Makefile @@ -109,7 +109,10 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) LFLAGS = -L. -L../../src else - LFLAGS = -L. -L../../src -LC:/raylib/raylib/src + LFLAGS = -L. -L../../src + ifeq ($(PLATFORM_OS),WINDOWS) + LFLAGS += -LC:/raylib/raylib/src + endif # external libraries to link with # GLFW3 LFLAGS += -L../../external/glfw3/lib/$(LIBPATH) |
