From 86e650207d8f17a3655f76a3a2495cc317b777c7 Mon Sep 17 00:00:00 2001 From: Randy Heit Date: Tue, 14 Oct 2008 01:28:04 +0000 Subject: [PATCH] - The root CMakeLists.txt now explicitly sets the build type to Debug if you don't tell it otherwise. - src/CMakeLists.txt now searches for fmod.hpp instead of fmod.h. SVN r1260 (trunk) --- CMakeLists.txt | 6 ++++++ src/CMakeLists.txt | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 511c61849..9b13398f2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,11 @@ cmake_minimum_required( VERSION 2.4 ) +IF( NOT CMAKE_BUILD_TYPE ) + SET( CMAKE_BUILD_TYPE Debug CACHE STRING + "Choose the type of build, options are: Debug Release RelWithDebInfo MinSizeRel." + FORCE ) +ENDIF( NOT CMAKE_BUILD_TYPE ) + set( ZDOOM_OUTPUT_DIR ${CMAKE_BINARY_DIR} CACHE PATH "Directory where zdoom.pk3 and the executable will be created" ) set( ZDOOM_EXE_NAME "zdoom" CACHE FILEPATH "Name of the executable to create" ) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 02f1c65f8..6efae63d2 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -141,7 +141,7 @@ endif( NOT FMOD_LIB_NAME ) # Search for FMOD include files -find_path( FMOD_INCLUDE_DIR fmod.h +find_path( FMOD_INCLUDE_DIR fmod.hpp PATHS ${FMOD_SEARCH_PATHS} ${FMOD_INC_PATH_SUFFIXES} )