This is a test project to understand how Conan V2 works with a complex layout.
Execute on terminal:
make desktop
Execute on terminal:
make ios
Execute on terminal:
make android
Execute on terminal:
make wasm
Execute on terminal:
make catalyst
Execute on terminal:
make ios-sim
This is the project structure when run make tree
:
.
├── CMakeLists.txt
├── Makefile
├── README.md
├── conan
│ ├── darwin-toolchain
│ │ ├── README.md
│ │ ├── build.py
│ │ ├── conanfile.py
│ │ └── test_package
│ │ ├── CMakeLists.txt
│ │ ├── conanfile.py
│ │ └── src
│ │ └── example.cpp
│ ├── profiles
│ │ ├── android_profile
│ │ ├── catalyst_profile
│ │ ├── ios_profile
│ │ ├── ios_sim_profile
│ │ └── wasm_profile
│ └── recipe
│ └── conanfile.py
├── include
│ ├── hello-objc.h
│ └── hello.h
├── requirements.txt
├── src
│ ├── hello-objc.m
│ └── hello.cpp
└── test_package
├── CMakeLists.txt
├── conanfile.py
└── src
└── example.cpp
10 directories, 23 files