🕹️
Game Engine. hardCORE series
Udemy course / C++PatreonBoostyTelegramYouTube
  • 💻Lectures
    • 00. Promo
    • 01. What is game engine?
    • 02. C++ build process. Preprocessing
      • Preprocessor commands
      • Code
    • 03. C++ build process. Compilation Theory. Assembly
      • Compiler commands
      • Code
    • 04. C++ build process. Compiler optimizations
      • Compiler commands
      • Code
    • 05. C++ build process. Linker. Forward declaration
      • Compiler commands
      • Code
    • 06. C++ build process. Linker. Static and Dynamic libraries. PCH
      • Compiler commands
      • Code
      • Books
    • 07. СMAKE. Day1. Basics
      • CMAKE commands
      • Repository
    • 08. СMAKE. Day2. Libs
      • CMAKE commands
      • Repository
    • 09. Conan. C++ package manager
      • Conan commands
      • Repository
    • 10. Raylib. CMAKE additional topics
      • Repository
    • 11. Doodle Jump Game. Raylib. CMAKE pch and other topics
      • Repository
    • 12. Conan and CMAKE integration. Github workflows
      • Commands
      • Repository
    • 13. Engine. Layout
    • 14. Engine. Logging
    • 15. Engine. Window
    • 16. Engine. Window events. Input
  • Мои курсы
    • 🎮Unreal Engine — полное руководство по разработке на С++
    • 🧪Автоматизация и тестирование в Unreal Engine
    • 🔊Metasounds
    • 🏗️Design patterns
    • 🐍Snake game
    • 🧠OpenAI
  • LifeEXE сообщество
    • Ресурсы
Powered by GitBook
On this page
  • Installation
  • Configure
  • file global.conf
  • Consuming packages
  1. Lectures
  2. 09. Conan. C++ package manager

Conan commands

Installation

python --version
pip --version
pip install conan
pip install conan==2.7
conan -v

Configure

conan profile detect --force
conan profile list
conan config home
conan config list
conan config show "*"

file global.conf

core.cache:storage_path = C:\Conan
core.download:download_cache = C:\ConanCache

Consuming packages

conan remote list
conan remote update conancenter --url https://center2.conan.io
conan install . --output-folder=build
conan list "*"
cmake .. -G "Visual Studio 17 2022" -A x64 -DCMAKE_TOOLCHAIN_FILE="conan_toolchain.cmake"
conan install . --output-folder=build -s build_type=Debug
conan install . --output-folder=build --profile=conanProfileRelease
conan list "gtest/1.15.0:*" -r=conancenter
conan list "gtest/1.15.0:*" -r=conancenter -fs "os=Windows"
conan cache clean "*"
conan install . --output-folder=build --profile=conanProfileDebug --profile:b=conanProfileDebug --build=missing
conan install . --output-folder=build --profile=conanProfileRelease --profile:b=conanProfileRelease --build=missing
Previous09. Conan. C++ package managerNextRepository

Last updated 3 months ago

💻