1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-16 00:00:02 +01:00
VILLASnode/tests/integration/CMakeLists.txt

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
631 B
Text
Raw Permalink Normal View History

2018-06-25 09:44:58 +02:00
# CMakeLists.txt.
#
2022-03-15 09:18:01 -04:00
# Author: Steffen Vogel <post@steffenvogel.de>
2022-03-15 09:28:57 -04:00
# SPDX-FileCopyrightText: 2014-2023 Institute for Automation of Complex Power Systems, RWTH Aachen University
2022-07-04 18:20:03 +02:00
# SPDX-License-Identifier: Apache-2.0
2018-06-25 09:44:58 +02:00
add_custom_target(run-integration-tests
COMMAND
/bin/bash -o pipefail -c \"
SRCDIR=${PROJECT_SOURCE_DIR}
BUILDDIR=${PROJECT_BINARY_DIR}
${PROJECT_SOURCE_DIR}/tools/integration-tests.sh 2>&1 | c++filt\"
USES_TERMINAL
DEPENDS
villas-node
villas-pipe
villas-signal
villas-hook
2018-06-25 09:44:58 +02:00
)
2020-06-15 23:01:26 +02:00
add_dependencies(run-tests run-integration-tests)