diff options
| author | Shoozza <[email protected]> | 2023-05-07 20:22:37 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-05-07 20:22:37 +0200 |
| commit | 204c6765bd12a63a0cab90ee536bdec321b80bee (patch) | |
| tree | dab3d6c09cbd8e07cfce6e5e8f061470f50fb925 /projects/VSCode/Makefile | |
| parent | 05e71f990c3e5fdbc4f7a7888d3af534cc2bf113 (diff) | |
| download | raylib-204c6765bd12a63a0cab90ee536bdec321b80bee.tar.gz raylib-204c6765bd12a63a0cab90ee536bdec321b80bee.zip | |
Fix vs code project (#3048)
* Modify remove trailing whitespace
* Fix invalid SetCameraMode call and missing argument to UpdateCamera for VSCode project
Diffstat (limited to 'projects/VSCode/Makefile')
| -rw-r--r-- | projects/VSCode/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/projects/VSCode/Makefile b/projects/VSCode/Makefile index 9b8cbea1..9ab042e8 100644 --- a/projects/VSCode/Makefile +++ b/projects/VSCode/Makefile @@ -166,7 +166,7 @@ ifeq ($(PLATFORM),PLATFORM_RPI) endif ifeq ($(PLATFORM),PLATFORM_WEB) # HTML5 emscripten compiler - # WARNING: To compile to HTML5, code must be redesigned + # WARNING: To compile to HTML5, code must be redesigned # to use emscripten.h and emscripten_set_main_loop() CC = emcc endif @@ -301,12 +301,12 @@ ifeq ($(PLATFORM),PLATFORM_DESKTOP) # Libraries for Debian GNU/Linux desktop compiling # NOTE: Required packages: libegl1-mesa-dev LDLIBS = -lraylib -lGL -lm -lpthread -ldl -lrt - + # On X11 requires also below libraries LDLIBS += -lX11 # NOTE: It seems additional libraries are not required any more, latest GLFW just dlopen them #LDLIBS += -lXrandr -lXinerama -lXi -lXxf86vm -lXcursor - + # On Wayland windowing system, additional libraries requires ifeq ($(USE_WAYLAND_DISPLAY),TRUE) LDLIBS += -lwayland-client -lwayland-cursor -lwayland-egl -lxkbcommon @@ -358,7 +358,7 @@ OBJS ?= main.c # For Android platform we call a custom Makefile.Android ifeq ($(PLATFORM),PLATFORM_ANDROID) - MAKEFILE_PARAMS = -f Makefile.Android + MAKEFILE_PARAMS = -f Makefile.Android export PROJECT_NAME export SRC_DIR else |
