From 737e2266d0cf5940ef993fd09deaec57a31c65c4 Mon Sep 17 00:00:00 2001 From: Mateja Date: Mon, 18 Jan 2021 16:31:48 +0100 Subject: Use CMake instead of Makefile. --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 CMakeLists.txt (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..5786cbb --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.13) +project(scanline-render) + +set( CMAKE_CXX_STANDARD 17 ) + +add_executable( ${PROJECT_NAME} main.cpp ) -- cgit v1.2.3