You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/bin/bash
-
- set -ex
-
- # Conan
- apt-get install -y python3-pip
- pip3 install conan
- conan profile new default --detect
-
- if [[ "${CXX}" == clang* ]]
- then
- export CXXFLAGS="-stdlib=libc++"
- else
- conan profile update settings.compiler.libcxx=libstdc++11 default
- fi
-
- mkdir build && cd build
-
- conan install \
- -g cmake_find_package \
- -g cmake_paths \
- ..
-
- cmake ..
- make
- make unittest
|