This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:xenial | |
LABEL maintainer="Conan.io <[email protected]>" | |
RUN apt-get -qq update \ | |
&& apt-get -qq install -y --no-install-recommends \ | |
sudo \ | |
binutils \ | |
wget \ | |
git \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
################################################################################ | |
# Conan package create infrastructure | |
# | |
# This file implements an infrastructure that eases development of | |
# package .mk files for Conan packages. It should be used for all | |
# packages that use Conan as their build system. | |
# | |
# See the Buildroot documentation for details on the usage of this | |
# infrastructure | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Buildroot 2020.11.2-dirty Configuration | |
# | |
BR2_HAVE_DOT_CONFIG=y | |
BR2_HOST_GCC_AT_LEAST_4_9=y | |
BR2_HOST_GCC_AT_LEAST_5=y | |
BR2_HOST_GCC_AT_LEAST_6=y | |
BR2_HOST_GCC_AT_LEAST_7=y | |
BR2_HOST_GCC_AT_LEAST_8=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Exporting package recipe | |
opencv/3.4.12 exports: File 'conandata.yml' found. Exporting it... | |
opencv/3.4.12 exports: Copied 1 '.yml' file: conandata.yml | |
opencv/3.4.12 exports_sources: Copied 1 '.txt' file: CMakeLists.txt | |
opencv/3.4.12: The stored package has not changed | |
opencv/3.4.12: Exported revision: ac926a800451e0df263603bfc36cacdf | |
Configuration: | |
[settings] | |
arch=x86_64 | |
arch_build=x86_64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cmake_minimum_required(VERSION 3.1) | |
project(foo CXX) | |
set(CMAKE_CXX_STANDARD 17) | |
set(CMAKE_VERBOSE_MAKEFILE TRUE) | |
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake) | |
conan_basic_setup() | |
add_library(foo foo.cpp) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install script for directory: C:/Users/uilia/AppData/Local/Temp/tmpx6uwdbu9conans/path with spaces | |
# Set the install prefix | |
if(NOT DEFINED CMAKE_INSTALL_PREFIX) | |
set(CMAKE_INSTALL_PREFIX "C:/Users/uilia/AppData/Local/Temp/tmpx6uwdbu9conans/path with spaces/build/package") | |
endif() | |
string(REGEX REPLACE "/$" "" CMAKE_INSTALL_PREFIX "${CMAKE_INSTALL_PREFIX}") | |
# Set the install configuration name. | |
if(NOT DEFINED CMAKE_INSTALL_CONFIG_NAME) |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ conan create . 5.15.2@ -s compiler.version=15 -s build_type=Debug -s compiler.runtime=MDd -o qt:shared=True -ks | |
[HOOK - conan-center.py] pre_export(): [REFERENCE LOWERCASE (KB-H002)] OK | |
[HOOK - conan-center.py] pre_export(): [RECIPE METADATA (KB-H003)] OK | |
[HOOK - conan-center.py] pre_export(): [HEADER_ONLY, NO COPY SOURCE (KB-H005)] OK | |
[HOOK - conan-center.py] pre_export(): [FPIC OPTION (KB-H006)] OK | |
[HOOK - conan-center.py] pre_export(): [VERSION RANGES (KB-H008)] OK | |
[HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] Total recipe size: 49.9423828125 KB | |
[HOOK - conan-center.py] pre_export(): [RECIPE FOLDER SIZE (KB-H009)] OK | |
[HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: ['qtmodules.conf', 'patches/*.diff'] | |
[HOOK - conan-center.py] pre_export(): [EXPORT LICENSE (KB-H023)] exports: None |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(venv) λ conan install . foobar/0.1.0@uilianries/testing | |
Configuration: | |
[settings] | |
arch=x86_64 | |
arch_build=x86_64 | |
build_type=Release | |
compiler=Visual Studio | |
compiler.runtime=MD | |
compiler.version=16 | |
os=Windows |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set(OpenCV_VERSION 3.4.12) | |
set(PACKAGE_VERSION ${OpenCV_VERSION}) | |
set(PACKAGE_VERSION_EXACT False) | |
set(PACKAGE_VERSION_COMPATIBLE False) | |
if(PACKAGE_FIND_VERSION VERSION_EQUAL PACKAGE_VERSION) | |
set(PACKAGE_VERSION_EXACT True) | |
set(PACKAGE_VERSION_COMPATIBLE True) | |
endif() |