Skip to content

Commit 2c53b6c

Browse files
committed
fixing wrong install dir on linux
1 parent 4a1bd8b commit 2c53b6c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ if(USE_DOUBLE)
132132
"$ENV{HOME}/Library/csound/${APIVERSION}/plugins64")
133133
elseif(LINUX)
134134
set(PLUGIN_INSTALL_DIR
135-
"$ENV{HOME}/csound/${APIVERSION}/plugins64")
135+
"$ENV{HOME}/.local/lib/csound/${APIVERSION}/plugins64")
136136
elseif(WINDOWS)
137137
set(PLUGIN_INSTALL_DIR "csound/${APIVERSION}/plugins64")
138138
endif()
@@ -143,7 +143,7 @@ else()
143143
"$ENV{HOME}/Library/csound/${APIVERSION}/plugins")
144144
elseif(LINUX)
145145
set(PLUGIN_INSTALL_DIR
146-
"$ENV{HOME}/csound/${APIVERSION}/plugins")
146+
"$ENV{HOME}/.local/lib/csound/${APIVERSION}/plugins")
147147
elseif(WINDOWS)
148148
set(PLUGIN_INSTALL_DIR "csound/${APIVERSION}/plugins")
149149
endif()

0 commit comments

Comments
 (0)