aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard <q@1bpm.net>2021-03-31 03:23:19 +0100
committerRichard <q@1bpm.net>2021-03-31 03:23:19 +0100
commita3a44949fedff65267e7ff3546a2957c839ed3c7 (patch)
tree64aa771e906b0d233c32cedc762b49d0714423f5
parent645b93af54be25f3555c53a6ce7aa40954b6fd6d (diff)
downloadcsound-sdl-a3a44949fedff65267e7ff3546a2957c839ed3c7.tar.gz
csound-sdl-a3a44949fedff65267e7ff3546a2957c839ed3c7.tar.bz2
csound-sdl-a3a44949fedff65267e7ff3546a2957c839ed3c7.zip
update FindCsound.cmake
-rw-r--r--cmake/Modules/FindCsound.cmake17
1 files changed, 11 insertions, 6 deletions
diff --git a/cmake/Modules/FindCsound.cmake b/cmake/Modules/FindCsound.cmake
index e55b269..b5631c9 100644
--- a/cmake/Modules/FindCsound.cmake
+++ b/cmake/Modules/FindCsound.cmake
@@ -5,17 +5,22 @@
# 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")
+ 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)
+ 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")
+ 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)
+ find_library(CSOUND_LIBRARY NAMES csound64 csound)
endif()
include(FindPackageHandleStandardArgs)