diff options
author | LucaSas <sas.luca.alex@gmail.com> | 2021-11-04 16:14:58 +0200 |
---|---|---|
committer | LucaSas <sas.luca.alex@gmail.com> | 2021-11-04 16:14:58 +0200 |
commit | d96b4ebce5ee6245fa80d27d41b67aa56555c912 (patch) | |
tree | f28cb388a14c4bd9da8f4b57b213eb1539fc5367 /libs/raylib/cmake/emscripten.cmake | |
parent | 6bcb1207addb4afe041c94e68e23c77175164956 (diff) | |
download | gamejam-slgj-2024-d96b4ebce5ee6245fa80d27d41b67aa56555c912.tar.gz gamejam-slgj-2024-d96b4ebce5ee6245fa80d27d41b67aa56555c912.tar.bz2 gamejam-slgj-2024-d96b4ebce5ee6245fa80d27d41b67aa56555c912.zip |
Changed the template to now download raylib instead of having it in the repo.
Diffstat (limited to 'libs/raylib/cmake/emscripten.cmake')
-rw-r--r-- | libs/raylib/cmake/emscripten.cmake | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/libs/raylib/cmake/emscripten.cmake b/libs/raylib/cmake/emscripten.cmake deleted file mode 100644 index 621ae78..0000000 --- a/libs/raylib/cmake/emscripten.cmake +++ /dev/null @@ -1,15 +0,0 @@ -SET(CMAKE_SYSTEM_NAME Linux) - -SET(CMAKE_C_COMPILER emcc) -SET(CMAKE_CXX_COMPILER em++) -if(NOT DEFINED CMAKE_AR) - find_program(CMAKE_AR NAMES emar) -endif() -if(NOT DEFINED CMAKE_RANLIB) - find_program(CMAKE_RANLIB NAMES emranlib) -endif() - -set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH) -set(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY) |