mirror of
https://github.com/conan-io/conan-center-index.git
synced 2025-08-14 02:35:37 +00:00

* Add opengv recipe * Let conan handle fPIC / shared * Add option to build python bindings * Try to fix M1 builds * Fix syntax * use tools.collect_libs() since the library name changes on Windows * Raise if windows+release * Disable Windows builds all together. * Create a _patch_sources() function that handles all the patching. Co-authored-by: Uilian Ries <uilianries@gmail.com> * Disable shared builds with gcc5 since CCI errors out due to exessive RAM usage * Fix typo * Disable shared builds on gcc since they error out on CCI Co-authored-by: Uilian Ries <uilianries@gmail.com>
8 lines
168 B
CMake
8 lines
168 B
CMake
cmake_minimum_required(VERSION 3.1.2)
|
|
project(cmake_wrapper)
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup()
|
|
|
|
add_subdirectory(source_subfolder)
|