CMakeLists.txt 131 B

123456789
  1. cmake_minimum_required(VERSION 3.23)
  2. project(Tutorial)
  3. add_executable(hello)
  4. target_sources(hello
  5. PRIVATE
  6. HelloWorld.cxx
  7. )