diff options
| author | Lázaro Albuquerque <[email protected]> | 2024-06-16 04:42:50 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-06-16 10:42:50 +0200 |
| commit | cc40a91343b124abf87ab0ae2fae22abf1f9561b (patch) | |
| tree | be186a9039656e1f9c9f465f79ab7782df26c59e /src/CMakeLists.txt | |
| parent | 04735fa9bb0b1de1027e1b502e046c9cb161c096 (diff) | |
| download | raylib-cc40a91343b124abf87ab0ae2fae22abf1f9561b.tar.gz raylib-cc40a91343b124abf87ab0ae2fae22abf1f9561b.zip | |
[build] Fix some warnings on web builds and remove some redundant flags. (#4069)
* update
* Revert "update"
This reverts commit e8adcabd94830be66938e12143c8fe23cdeab605.
* update
* remove a not stricly required flag
Diffstat (limited to 'src/CMakeLists.txt')
| -rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 38766570..bfb4b05b 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -69,7 +69,7 @@ else() endif() if (${PLATFORM} MATCHES "Web") - target_link_options(raylib PRIVATE "-sUSE_GLFW=3") + target_link_options(raylib PUBLIC "-sUSE_GLFW=3") endif() set_target_properties(raylib PROPERTIES |
