File tree 9 files changed +390
-91
lines changed
contrib/projects/cloe_tests
9 files changed +390
-91
lines changed Original file line number Diff line number Diff line change @@ -67,14 +67,16 @@ install-ubuntu-deps::
67
67
python3-setuptools \
68
68
python3-pip \
69
69
time \
70
- tmux
70
+ tmux \
71
+ ;
71
72
72
73
ifndef WITHOUT_DEV_DEPS
73
74
install-ubuntu-deps::
74
75
command -v ${APT} >/dev/null 2>&1
75
76
${APT} install ${APT_ARGS} \
76
77
clang-format \
77
- python3-venv
78
+ python3-venv \
79
+ ;
78
80
endif
79
81
80
82
# Archlinux -------------------------------------------------------------------
@@ -96,14 +98,16 @@ install-archlinux-deps::
96
98
patchelf \
97
99
python-pip \
98
100
time \
99
- tmux
101
+ tmux \
102
+ ;
100
103
101
104
ifndef WITHOUT_DEV_DEPS
102
105
install-archlinux-deps::
103
106
command -v ${PACMAN} >/dev/null 2>&1
104
107
${PACMAN} -S ${PACMAN_ARGS} \
105
108
clang \
106
- python-virtualenv
109
+ python-virtualenv \
110
+ ;
107
111
endif
108
112
109
113
# Python ----------------------------------------------------------------------
@@ -113,7 +117,10 @@ endif
113
117
114
118
install-python-deps::
115
119
command -v ${PIP} >/dev/null 2>&1
116
- ${PIP} install ${PIP_INSTALL_ARGS} conan
120
+ ${PIP} install ${PIP_INSTALL_ARGS} \
121
+ conan \
122
+ libtmux \
123
+ ;
117
124
118
125
ifndef WITHOUT_DEV_DEPS
119
126
install-python-deps::
Original file line number Diff line number Diff line change @@ -5,21 +5,6 @@ project(cloe_plugin_vtd LANGUAGES CXX)
5
5
include (${CMAKE_CURRENT_BINARY_DIR} /conanbuildinfo.cmake)
6
6
conan_basic_setup(TARGETS)
7
7
8
- # VTD Interface Library ----------------------------------------------
9
- list (APPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR} /cmake)
10
- find_package (VTD)
11
- add_library (vtd-rdb-interface STATIC
12
- ${VTD_RDBHANDLER_SOURCES}
13
- )
14
- target_include_directories (vtd-rdb-interface
15
- PUBLIC
16
- ${VTD_INCLUDE_DIRS}
17
- ${VTD_RDBHANDLER_INCLUDE_DIRS}
18
- )
19
- set_target_properties (vtd-rdb-interface PROPERTIES
20
- POSITION_INDEPENDENT_CODE ON
21
- )
22
-
23
8
# Cloe Plugin --------------------------------------------------------
24
9
include (CloePluginSetup)
25
10
@@ -38,7 +23,7 @@ add_library(vtd-object-lib STATIC
38
23
)
39
24
target_link_libraries (vtd-object-lib
40
25
PUBLIC
41
- vtd-rdb- interface
26
+ CONAN_PKG:: vtd-api
42
27
CONAN_PKG::cloe-runtime
43
28
CONAN_PKG::cloe-models
44
29
CONAN_PKG::boost
You can’t perform that action at this time.
0 commit comments