diff options
| author | chriscamacho <[email protected]> | 2020-08-23 20:01:26 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-08-23 21:01:26 +0200 |
| commit | d140dc81c04674019f388030842d72c69c6800d6 (patch) | |
| tree | 65db0eb541de80d06d42ca2a4e805cf1de885c7f /examples/Makefile | |
| parent | 816856eb75bcf05bc3961eef2a52e3b8b1cd4efe (diff) | |
| download | raylib-d140dc81c04674019f388030842d72c69c6800d6.tar.gz raylib-d140dc81c04674019f388030842d72c69c6800d6.zip | |
work on quat and matrix math - deleted multiple copies of raymath.h causing issues (#1359)
Co-authored-by: codifies <[email protected]>
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/examples/Makefile b/examples/Makefile index 6824b5d9..b5590be6 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -267,7 +267,8 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) # Reset everything. # Precedence: immediately local, installed version, raysan5 provided libs -I$(RAYLIB_H_INSTALL_PATH) -I$(RAYLIB_PATH)/release/include - INCLUDE_PATHS = -I$(RAYLIB_H_INSTALL_PATH) -isystem. -isystem$(RAYLIB_PATH)/src -isystem$(RAYLIB_PATH)/release/include -isystem$(RAYLIB_PATH)/src/external + #INCLUDE_PATHS = -I$(RAYLIB_H_INSTALL_PATH) -isystem. -isystem$(RAYLIB_PATH)/src -isystem$(RAYLIB_PATH)/release/include -isystem$(RAYLIB_PATH)/src/external + INCLUDE_PATHS = -I$(RAYLIB_H_INSTALL_PATH) -I. -I$(RAYLIB_PATH)/src -I$(RAYLIB_PATH)/release/include -I$(RAYLIB_PATH)/src/external endif endif @@ -290,7 +291,7 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),LINUX) # Reset everything. # Precedence: immediately local, installed version, raysan5 provided libs - LDFLAGS = -L. -L$(RAYLIB_INSTALL_PATH) -L$(RAYLIB_RELEASE_PATH) + LDFLAGS = -L. -L$(RAYLIB_INSTALL_PATH) -L$(RAYLIB_RELEASE_PATH) -L$(RAYLIB_PATH) endif endif @@ -378,7 +379,8 @@ CORE = \ core/core_scissor_test \ core/core_storage_values \ core/core_vr_simulator \ - core/core_loading_thread + core/core_loading_thread \ + core/core_quat_conversion SHAPES = \ shapes/shapes_basic_shapes \ |
