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/CheckFileSystemSymlinkSupport.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/CheckFileSystemSymlinkSupport.cmake')
-rw-r--r-- | libs/raylib/cmake/CheckFileSystemSymlinkSupport.cmake | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libs/raylib/cmake/CheckFileSystemSymlinkSupport.cmake b/libs/raylib/cmake/CheckFileSystemSymlinkSupport.cmake deleted file mode 100644 index 798840e..0000000 --- a/libs/raylib/cmake/CheckFileSystemSymlinkSupport.cmake +++ /dev/null @@ -1,13 +0,0 @@ -# Populates a ${FILESYSTEM_LACKS_SYMLINKS} variable -message(STATUS "Testing if file system supports symlinks") -execute_process( - COMMAND ${CMAKE_COMMAND} -E create_symlink CMakeLists.txt "${CMAKE_CURRENT_BINARY_DIR}/TestingIfSymlinkWorks" - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - RESULT_VARIABLE FILESYSTEM_LACKS_SYMLINKS -) -If (FILESYSTEM_LACKS_SYMLINKS) - message(STATUS "Testing if file system supports symlinks -- unsupported") -else() - message(STATUS "Testing if file system supports symlinks -- supported") -endif() - |