From 08b8d7d40016d83ad0c501edf19c54c529aae5c2 Mon Sep 17 00:00:00 2001 From: Magne Sjaastad Date: Wed, 3 Mar 2021 14:11:27 +0100 Subject: [PATCH] Octave : Use correct destination build folder --- OctavePlugin/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OctavePlugin/CMakeLists.txt b/OctavePlugin/CMakeLists.txt index 9c331730ed..950862c362 100644 --- a/OctavePlugin/CMakeLists.txt +++ b/OctavePlugin/CMakeLists.txt @@ -220,13 +220,13 @@ add_custom_target(octave_plugins ALL DEPENDS add_custom_command(TARGET octave_plugins POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different "${oct_bin}" - "${CMAKE_CURRENT_BINARY_DIR}/../ApplicationLibCode/$/${Filename}" + "${CMAKE_CURRENT_BINARY_DIR}/../ApplicationExeCode/$/${Filename}" ) else() add_custom_command(TARGET octave_plugins POST_BUILD COMMAND ${CMAKE_COMMAND} -E copy_if_different "${oct_bin}" - "${CMAKE_CURRENT_BINARY_DIR}/../ApplicationLibCode/${Filename}" + "${CMAKE_CURRENT_BINARY_DIR}/../ApplicationExeCode/${Filename}" ) endif() endforeach( oct_bin )