Files
raytracer_challenge/apps/CMakeLists.txt
2024-01-30 11:43:37 +01:00

12 lines
248 B
CMake

cmake_minimum_required(VERSION 3.14)
project(main)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
add_executable(raytracer main.cpp)
# We need hello.h and the hello library
target_link_libraries(raytracer
PRIVATE raytracing)