Commit 6e4c22e9 authored by Andreas Schuh's avatar Andreas Schuh

Merge pull request #7 from andy-held/cmake-migration

Fix case in CMake module includes.
parents a4c4a01a f4791745
......@@ -15,7 +15,7 @@ set (PACKAGE_STRING "${PROJECT_NAME} ${PACKAGE_VERSION}")
set (PACKAGE_TARNAME "${PROJECT_NAME}-${PACKAGE_VERSION}")
set (PACKAGE_BUGREPORT "https://code.google.com/p/gflags/issues/")
project (${PROJECT_NAME} CXX)
project (${PROJECT_NAME} CXX C)
version_numbers (
${PACKAGE_VERSION}
......@@ -62,7 +62,7 @@ endif ()
# system checks
include (CheckTypeSize)
include (CheckIncludeFileCXX)
include (CheckCxxSymbolExists)
include (CheckCXXSymbolExists)
set (GFLAGS_INTTYPES_FORMAT "" CACHE STRING "Format of integer types: \"C99\" (uint32_t), \"BSD\" (u_int32_t), \"VC7\" (__int32)")
mark_as_advanced(GFLAGS_INTTYPES_FORMAT)
......
......@@ -35,7 +35,7 @@
include (CheckIncludeFileCXX)
include (CheckLibraryExists)
include (CheckCxxSymbolExists)
include (CheckCXXSymbolExists)
set(Threads_FOUND FALSE)
# Do we have sproc?
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment