forked from eclipse-zenoh/zenoh-plugin-dds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
58 lines (49 loc) · 1.73 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#
# Copyright (c) 2017, 2020 ADLINK Technology Inc.
#
# This program and the accompanying materials are made available under the
# terms of the Eclipse Public License 2.0 which is available at
# http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
# which is available at https://www.apache.org/licenses/LICENSE-2.0.
#
# SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
#
# Contributors:
# ADLINK zenoh team, <[email protected]>
#
# ROS2 package build file (waiting for an "ament_rust" built type)
cmake_minimum_required(VERSION 3.8)
project(zenoh_bridge_dds)
if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_CXX_COMPILER_ID MATCHES "Clang")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()
# find dependencies
find_package(ament_cmake REQUIRED)
# uncomment the following section in order to fill in
# further dependencies manually.
# find_package(<dependency> REQUIRED)
set(RUST_TARGET_DIR ${CMAKE_BINARY_DIR}/target)
FILE(GLOB RUST_SRC_FILES
${CMAKE_SOURCE_DIR}/zenoh-bridge-dds/src/*.rs
${CMAKE_SOURCE_DIR}/zenoh-bridge-dds/Cargo.lock
${CMAKE_SOURCE_DIR}/zplugin-dds/src/*.rs
${CMAKE_SOURCE_DIR}/zplugin-dds/Cargo.lock)
add_custom_command(
OUTPUT
${RUST_TARGET_DIR}/release/zenoh-bridge-dds
COMMAND cargo build --release --manifest-path "${CMAKE_SOURCE_DIR}/zenoh-bridge-dds/Cargo.toml" --target-dir "${RUST_TARGET_DIR}"
DEPENDS
${RUST_SRC_FILES}
)
add_custom_target(
build_crate ALL
DEPENDS
${RUST_TARGET_DIR}/release/zenoh-bridge-dds
)
install(FILES
${RUST_TARGET_DIR}/release/zenoh-bridge-dds
RENAME zenoh_bridge_dds
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
DESTINATION lib/${PROJECT_NAME}
)
ament_package()