added _FILE_OFFSET_BITS=64 (#88)

pull/40/head
Nestal Wan 2012-07-16 22:30:30 +08:00
parent 8547bbf7ab
commit 394982da4e
3 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,11 @@
cmake_minimum_required(VERSION 2.8)
# Grive version. remember to update it for every new release!
set( GRIVE_VERSION "0.2.0" )
# common compile options
add_definitions( -DVERSION="${GRIVE_VERSION}" )
add_definitions( -D_FILE_OFFSET_BITS=64 )
add_subdirectory( libgrive )
add_subdirectory( grive )

View File

@ -7,8 +7,6 @@ include_directories(
${OPT_INCS}
)
add_definitions( -DVERSION="${GRIVE_VERSION}" )
file (GLOB GRIVE_EXE_SRC
${grive_SOURCE_DIR}/src/*.cc
)

View File

@ -68,7 +68,6 @@ file (GLOB LIBGRIVE_SRC
)
add_definitions(
-DVERSION="${GRIVE_VERSION}"
-DTEST_DATA="${libgrive_SOURCE_DIR}/test/data/"
-DSRC_DIR="${libgrive_SOURCE_DIR}/src"
)