link scc-utils

This commit is contained in:
Stanislaw Kaushanski 2021-06-02 11:35:34 +02:00
parent c72b02f99f
commit 0535f2e353
2 changed files with 2 additions and 2 deletions

2
Jenkinsfile vendored
View File

@ -84,7 +84,7 @@ pipeline {
agent {docker { image 'centos8' } }
stages {
stage('CentOS8: checkout') { steps { checkout_project() }}
stage('CentOS8: conan') { steps { setup_conan_ubuntu() }}
stage('CentOS8: conan') { steps { setup_conan_centos() }}
stage('CentOS8: build') { steps { build_project() }}
stage('CentOS8: test') { steps { test_project() }}
}

View File

@ -2,6 +2,6 @@ cmake_minimum_required(VERSION 3.12)
add_executable (io_redirector
main.cpp
)
target_link_libraries (io_redirector LINK_PUBLIC scc)
target_link_libraries (io_redirector LINK_PUBLIC scc-util)
add_test(NAME io_redirector_test COMMAND io_redirector)