From cebbe1cd7fe8be10d51a1d8fc4007407b1ba77c7 Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Sat, 22 Jan 2011 16:25:08 +0000 Subject: Première version du projet qui compile ! (utilise CMake) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: file:///var/svn/2011-usi/trunk@10 db941bf7-0cb3-4dda-9634-87faf64f93a7 --- app/v3_c/CMakeLists.txt | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 app/v3_c/CMakeLists.txt (limited to 'app/v3_c/CMakeLists.txt') diff --git a/app/v3_c/CMakeLists.txt b/app/v3_c/CMakeLists.txt new file mode 100644 index 0000000..d20e952 --- /dev/null +++ b/app/v3_c/CMakeLists.txt @@ -0,0 +1,28 @@ +cmake_minimum_required (VERSION 2.6) +project (MyHttpd C) + +# The version number. +set (MYHTTPD_VERSION_MAJOR 0) +set (MYHTTPD_VERSION_MINOR 1) + +set(TEST_SCRIPTS_PATH ${PROJECT_SOURCE_DIR}/src/test) + +# Include the directory itself as a path to include directories +set(CMAKE_INCLUDE_CURRENT_DIR ON) +#set(INCLUDE_DIRECTORIES "${PROJECT_SOURCE_DIR}/include") +set(INCLUDE_DIRECTORIES src/include) +# add the binary tree to the search path for include files +# so that we will find netlem.h and netlem_ds.h +include_directories("${INCLUDE_DIRECTORIES}" "${PROJECT_BINARY_DIR}") + +add_definitions(-Wall -Wextra -pedantic -Werror -std=c99 -D_POSIX_SOURCE -g) +add_definitions(-pg) +set (CMAKE_EXE_LINKER_FLAGS -pg) + +add_subdirectory(src) +add_subdirectory(src/test) + +set(ENV{LC_ALL} C) + +enable_testing() +add_test(testfunc000_env ${TEST_SCRIPTS_PATH}/testfunc_000_env.sh) -- cgit v1.2.3