From 092cde08303929f3248497108cc11e98ae881bab Mon Sep 17 00:00:00 2001 From: Robin Davies Date: Mon, 7 Mar 2022 02:36:56 -0500 Subject: [PATCH] package change. --- .vscode/launch.json | 38 ++++++++++++++++++++++++++++++++++++++ CMakeLists.txt | 1 + package | 1 + 3 files changed, 40 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index 9ee6ffd..80d59ea 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -72,6 +72,44 @@ "ignoreFailures": true } ] + }, + { + "name": "(gdb) processCopyrights Launch", + "type": "cppdbg", + "request": "launch", + // Resolved by CMake Tools: + "program": "${command:cmake.launchTargetPath}", + ///"args": [ "[lv2host_leak]" ], + + "args": [ + "../../../debian/copyrights-base", + "--output", + "../../../debian/copyrights" + ], + "stopAtEntry": false, + "cwd": "${workspaceFolder}", + "environment": [ + { + // add the directory where our target was built to the PATHs + // it gets resolved by CMake Tools: + "name": "PATH", + "value": "$PATH:${command:cmake.launchTargetDirectory}" + }, + { + "name": "OTHER_VALUE", + "value": "Something something" + } + ], + "externalConsole": false, + "MIMode": "gdb", + "setupCommands": [ + { + "description": "Enable pretty-printing for gdb", + "text": "-enable-pretty-printing", + "ignoreFailures": true + } + ] } + ] } \ No newline at end of file diff --git a/CMakeLists.txt b/CMakeLists.txt index 060ac62..3e81d1b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,6 +15,7 @@ enable_testing() add_subdirectory("react") add_subdirectory("src") + # select LV2 source directory for the current build architecture diff --git a/package b/package index 1cc225e..617a733 100755 --- a/package +++ b/package @@ -1,2 +1,3 @@ cd build cpack -G DEB -C Release -config CPackConfig.cmake +cd ..