From 6377a0044f16f987c3d32cabeadf393eb6f17088 Mon Sep 17 00:00:00 2001 From: "jan.reininghaus" Date: Tue, 7 May 2013 13:47:24 +0000 Subject: update CMakeLists.txt to give a nice name to the Makefile git-svn-id: https://phat.googlecode.com/svn/trunk@66 8e3bb3c2-eed4-f18f-5264-0b6c94e6926d --- CMakeLists.txt | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index bd6ffe8..62b0584 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,7 @@ cmake_minimum_required(VERSION 2.8) +project("Phat") + set(CMAKE_BUILD_TYPE "Release") INCLUDE(CheckCXXSourceCompiles) @@ -40,9 +42,9 @@ endif() FILE(GLOB_RECURSE all_headers "include/phat/*.h") FILE(GLOB general_includes "include/phat/*.h") -FILE(GLOB algorithms_includes "include/phat/*.h") -FILE(GLOB helpers_includes "include/phat/*.h") -FILE(GLOB representations_includes "include/phat/*.h") +FILE(GLOB algorithms_includes "include/phat/algorithms/*.h") +FILE(GLOB helpers_includes "include/phat/helpers/*.h") +FILE(GLOB representations_includes "include/phat/representations/*.h") add_executable (simple_example src/simple_example.cpp ${all_headers}) add_executable (self_test src/self_test.cpp ${all_headers}) -- cgit v1.2.3