diff options
| author | markdegreef <mgreef@gmail.com> | 2019-03-05 19:44:01 +0100 |
|---|---|---|
| committer | Phil Christensen <philc@microsoft.com> | 2019-03-05 10:44:01 -0800 |
| commit | 140e2733f7fd2e6db5fe57834db3bdb3485d8236 (patch) | |
| tree | 2332dfeceb6dddc24ef533829f4a51cbb40b4d29 /ports/console-bridge | |
| parent | b9d7fa1a1cf1dee3467640405f4c985e20571400 (diff) | |
| download | vcpkg-140e2733f7fd2e6db5fe57834db3bdb3485d8236.tar.gz vcpkg-140e2733f7fd2e6db5fe57834db3bdb3485d8236.zip | |
Fix linux build of urdfdom (#5538)
Remove empty directories and set correct cmake target path
Machine setup: ubuntu 18.10 x64 gcc version 8.2.0
The steps to reproduce: ./vcpkg install urdfdom:x64-linux
Diffstat (limited to 'ports/console-bridge')
| -rw-r--r-- | ports/console-bridge/portfile.cmake | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ports/console-bridge/portfile.cmake b/ports/console-bridge/portfile.cmake index 74d76923f..dc618b4b9 100644 --- a/ports/console-bridge/portfile.cmake +++ b/ports/console-bridge/portfile.cmake @@ -25,6 +25,8 @@ if(EXISTS ${CURRENT_PACKAGES_DIR}/CMake) vcpkg_fixup_cmake_targets(CONFIG_PATH "CMake" TARGET_PATH share/console_bridge) else() vcpkg_fixup_cmake_targets(CONFIG_PATH "lib/console_bridge/cmake" TARGET_PATH share/console_bridge) + file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/lib/console_bridge) + file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/lib/console_bridge) endif() file(REMOVE_RECURSE ${CURRENT_PACKAGES_DIR}/debug/include) |
