-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFindCsound.cmake
42 lines (37 loc) · 1.83 KB
/
FindCsound.cmake
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Try to find the Csound library.
# Once done this will define:
# CSOUND_FOUND - System has the Csound library
# CSOUND_INCLUDE_DIRS - The Csound include directories.
# CSOUND_LIBRARIES - The libraries needed to use the Csound library.
if(APPLE)
find_path(CSOUND_INCLUDE_DIR csound.h HINTS /Library/Frameworks/CsoundLib64.framework/Headers
"$ENV{HOME}/Library/Frameworks/CsoundLib64.framework/Headers")
elseif(WIN32)
find_path(CSOUND_INCLUDE_DIR csound.h HINTS "C:/Program Files/Csound6_x64/include" "C:/Program Files/Csound6_x64/include/csound")
else()
find_path(CSOUND_INCLUDE_DIR csound.h PATH_SUFFIXES csound)
endif()
if(APPLE)
find_library(CSOUND_LIBRARY NAMES CsoundLib64 HINTS /Library/Frameworks/CsoundLib64.framework/
"$ENV{HOME}/Library/Frameworks/CsoundLib64.framework")
elseif(WIN32)
find_library(CSOUND_LIBRARY NAMES csound64 csound HINTS "C:/Program Files/Csound6_x64/bin" "C:/Program Files/Csound6_x64/lib")
else()
find_library(CSOUND_LIBRARY NAMES csound64 csound)
endif()
if(APPLE)
find_path(CSOUND_PLUGINS_DIR libarrayops.dylib HINTS /Library/Frameworks/CsoundLib64.framework
"$ENV{HOME}/Library/Frameworks/CsoundLib64.framework")
elseif(WIN32)
find_path(CSOUND_PLUGINS_DIR arrayops.dll HINTS "C:/Program Files/Csound6_x64" "C:/Program Files/Csound6_x64/plugins64")
else()
find_path(CSOUND_PLUGINS_DIR libarrayops.so HINTS /usr/local/lib/csound /usr/lib/csound)
endif()
include(FindPackageHandleStandardArgs)
# handle the QUIETLY and REQUIRED arguments and set CSOUND_FOUND to TRUE
# if all listed variables are TRUE
find_package_handle_standard_args(CSOUND
CSOUND_LIBRARY CSOUND_INCLUDE_DIR CSOUND_PLUGINS_DIR)
mark_as_advanced(CSOUND_INCLUDE_DIR CSOUND_LIBRARY)
set(CSOUND_INCLUDE_DIRS ${CSOUND_INCLUDE_DIR})
set(CSOUND_LIBRARIES ${CSOUND_LIBRARY} )