From 4ac7eccfe4fc2e24f65111328a08c5df477bb2a9 Mon Sep 17 00:00:00 2001 From: Mateja Date: Mon, 18 Jan 2021 16:55:43 +0100 Subject: Using 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..943dea8 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,6 @@ +cmake_minimum_required(VERSION 3.13) +project(barycentric-render) + +set( CMAKE_CXX_STANDARD 17 ) + +add_executable( ${PROJECT_NAME} main.cpp ) -- cgit v1.2.3