diff options
| author | Ray <raysan5@gmail.com> | 2016-05-17 00:10:28 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2016-05-17 00:10:28 +0200 |
| commit | d84f922372622276caab0764ae209decc39a8bdb (patch) | |
| tree | 66ae60eb7034a732506fe9034f9feb91800f652c /templates/basic_game | |
| parent | e060944b34f11978392f5c24282c95781caae63e (diff) | |
| parent | f575935ace109149277a57f6216c5df1b94eeac9 (diff) | |
| download | raylib-d84f922372622276caab0764ae209decc39a8bdb.tar.gz raylib-d84f922372622276caab0764ae209decc39a8bdb.zip | |
Merge pull request #114 from cHemingway/osx-fixes
Fix building examples on OSX
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) |
