From 1ddfdc1a880279ce07b2c43f60b7aa138d4ad315 Mon Sep 17 00:00:00 2001 From: Benjamin Dobell Date: Mon, 17 Nov 2014 07:02:07 +1100 Subject: CMake files for Heimdall CLI and mingw support --- libpit/CMakeLists.txt | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 libpit/CMakeLists.txt (limited to 'libpit') diff --git a/libpit/CMakeLists.txt b/libpit/CMakeLists.txt new file mode 100644 index 0000000..8d12868 --- /dev/null +++ b/libpit/CMakeLists.txt @@ -0,0 +1,10 @@ +cmake_minimum_required(VERSION 2.8.4) +project(libpit) + +set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=gnu++11") + +set(LIBPIT_SOURCE_FILES + Source/libpit.cpp + Source/libpit.h) + +add_library(pit STATIC ${LIBPIT_SOURCE_FILES}) -- cgit v1.1