diff options
| author | Ray <[email protected]> | 2019-05-07 10:05:21 +0200 |
|---|---|---|
| committer | Ray <[email protected]> | 2019-05-07 10:05:21 +0200 |
| commit | e0e2346c2266d8f8f09a2e1e68fffd61b49afa8d (patch) | |
| tree | 87ddf3f573c6c8538a40e5202ca6ae0e72313d29 /examples/Makefile | |
| parent | afd90a5a5655724dc56466fa0c2d42c3f702d88a (diff) | |
| download | raylib-e0e2346c2266d8f8f09a2e1e68fffd61b49afa8d.tar.gz raylib-e0e2346c2266d8f8f09a2e1e68fffd61b49afa8d.zip | |
NO SUPPORT_BUSY_WAIT_LOOP by default
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/Makefile b/examples/Makefile index 271606ff..083afd92 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -311,7 +311,8 @@ endif ifeq ($(PLATFORM),PLATFORM_DESKTOP) ifeq ($(PLATFORM_OS),WINDOWS) # Libraries for Windows desktop compilation - LDLIBS = -lraylib -lopengl32 -lgdi32 + # NOTE: WinMM library required to set high-res timer resolution + LDLIBS = -lraylib -lopengl32 -lgdi32 -lwinmm # Required for physac examples LDLIBS += -static -lpthread endif |
