From 0884bddfedb82cad8ea2bd2eb1c58582e20105c7 Mon Sep 17 00:00:00 2001 From: Navaneeth K N Date: Tue, 21 Apr 2015 10:41:30 +0530 Subject: [PATCH] `make vst` will use relative path for varnamc closes #100 --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8469635..8d53e42 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -150,7 +150,7 @@ add_custom_target (vst) # Each scheme will have a target to compile # vst will have a dependency to all these targets so that running vst will compile all the scheme files foreach(scheme ${SUPPORTED_SCHEMES}) - add_custom_target (${scheme}.vst COMMAND varnamc --compile schemes/${scheme}) + add_custom_target (${scheme}.vst COMMAND ./varnamc --compile schemes/${scheme}) add_dependencies (vst "${scheme}.vst") install (FILES schemes/${scheme}.vst DESTINATION ${CMAKE_INSTALL_PREFIX}/share/varnam/vst OPTIONAL) endforeach()