Lightning Talk: Know Your Audience: Who’s Building Your C++ Code - Chris Thrasher - CppCon 2023

Поділитися
Вставка
  • Опубліковано 30 кві 2024
  • cppcon.org/
    ---
    Lightning Talk: Know Your Audience: Who’s Building Your C++ Code - Chris Thrasher - CppCon 2023
    github.com/CppCon/CppCon2023
    Know who is building your code because it impacts the decisions you make in your build system. My talk presents an idea for dealing with how different people need different things from your build.
    ---
    Chris Thrasher
    Chris Thrasher is a robotics software developer who focuses on how to best use C++ and related build tools to deliver robotic systems.
    ---
    Videos Filmed & Edited by Bash Films: www.BashFilms.com
    UA-cam Channel Managed by Digital Medium Ltd: events.digital-medium.co.uk
    ---
    Registration for CppCon: cppcon.org/registration/
    #cppcon #cppprogramming #cpp
  • Наука та технологія

КОМЕНТАРІ • 3

  • @scouter84
    @scouter84 Місяць тому

    Thank you for this concise talk!

  • @u9vata
    @u9vata Місяць тому

    I wish popular oss things just would came with a simple makefile. Literally are not picking libraries or tools where I spot cmake if there is any alternative to them...
    Key take-away though is "user builds vs developer builds". That is already a good thing to do even if your project is small!

    • @skaravos
      @skaravos 13 днів тому

      instead of "./configure && make" try "cmake -S . -B _build && cmake --build _build"
      If the project has setup their CMake correctly it'll #JustWork on every platform.