summaryrefslogtreecommitdiff
path: root/libs/assimp/cmake-modules/FindRT.cmake
diff options
context:
space:
mode:
authorsanine <sanine.not@pm.me>2023-02-12 23:53:22 -0600
committersanine <sanine.not@pm.me>2023-02-12 23:53:22 -0600
commitf1fe73d1909a2448a004a88362a1a532d0d4f7c3 (patch)
treeab37ae3837e2f858de2932bcee9f26e69fab3db1 /libs/assimp/cmake-modules/FindRT.cmake
parentf567ea1e2798fd3156a416e61f083ea3e6b95719 (diff)
switch to tinyobj and nanovg from assimp and cairo
Diffstat (limited to 'libs/assimp/cmake-modules/FindRT.cmake')
-rw-r--r--libs/assimp/cmake-modules/FindRT.cmake20
1 files changed, 0 insertions, 20 deletions
diff --git a/libs/assimp/cmake-modules/FindRT.cmake b/libs/assimp/cmake-modules/FindRT.cmake
deleted file mode 100644
index c397aca..0000000
--- a/libs/assimp/cmake-modules/FindRT.cmake
+++ /dev/null
@@ -1,20 +0,0 @@
-# Try to find real time libraries
-# Once done, this will define
-#
-# RT_FOUND - system has rt library
-# RT_LIBRARIES - rt libraries directory
-#
-# Source: https://gitlab.cern.ch/dss/eos/commit/44070e575faaa46bd998708ef03eedb381506ff0
-#
-
-if(RT_LIBRARIES)
- set(RT_FIND_QUIETLY TRUE)
-endif(RT_LIBRARIES)
-
-find_library(RT_LIBRARY rt)
-set(RT_LIBRARIES ${RT_LIBRARY})
-# handle the QUIETLY and REQUIRED arguments and set
-# RT_FOUND to TRUE if all listed variables are TRUE
-include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(RT DEFAULT_MSG RT_LIBRARY)
-mark_as_advanced(RT_LIBRARY)