aboutsummaryrefslogtreecommitdiff
path: root/cmake/Modules/FindCsound.cmake
blob: 24c90d9f6964c954ea8010d561e04a339745ae51 (plain)
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# 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.

# RKnight 2021-07-21 : quick copy paste hack to deal with 32 bit if not using double

if(USE_DOUBLE)
  # 64 bit
  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 PATH_SUFFIXES csound 
            HINTS "c:\\Program Files\\Csound6_x64\\include")
  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 HINTS "c:\\Program Files\\Csound6_x64\\lib")
  else()
    find_library(CSOUND_LIBRARY NAMES csound64 csound)
  endif()

else()
  # 32 bit
  if(APPLE)
    find_path(CSOUND_INCLUDE_DIR csound.h HINTS /Library/Frameworks/CsoundLib.framework/Headers
    "$ENV{HOME}/Library/Frameworks/CsoundLib.framework/Headers")
  elseif(WIN32)
    find_path(CSOUND_INCLUDE_DIR csound.h PATH_SUFFIXES csound 
            HINTS "c:\\Program Files (x86)\\Csound6\\include")
  else()
    find_path(CSOUND_INCLUDE_DIR csound.h PATH_SUFFIXES csound)
  endif()

  if(APPLE)
    find_library(CSOUND_LIBRARY NAMES CsoundLib HINTS /Library/Frameworks/CsoundLib.framework/
    "$ENV{HOME}/Library/Frameworks/CsoundLib.framework")
  elseif(WIN32)
    find_library(CSOUND_LIBRARY NAMES csound HINTS "c:\\Program Files (x86)\\Csound6\\lib")
  else()
    find_library(CSOUND_LIBRARY NAMES csound csound)
  endif()

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)
mark_as_advanced(CSOUND_INCLUDE_DIR CSOUND_LIBRARY)

set(CSOUND_INCLUDE_DIRS ${CSOUND_INCLUDE_DIR})
set(CSOUND_LIBRARIES ${CSOUND_LIBRARY} )