cmake: add ConfigOptions.cmake

This commit is contained in:
Vic Lee 2011-07-04 17:01:06 +08:00
parent 374357614f
commit 7ae17192bb
3 changed files with 5 additions and 0 deletions

View File

@ -30,6 +30,7 @@ include(TestBigEndian)
set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/)
include(AutoVersioning)
include(ConfigOptions)
# Soname versioning - 0.0.0 since it is not being managed yet
set(FREERDP_VERSION_MAJOR "0")

View File

@ -0,0 +1 @@
option(WITH_DEBUG_TRANSPORT "Print transport debug message." OFF)

View File

@ -6,3 +6,6 @@
/* Endian */
#cmakedefine BIG_ENDIAN
/* Options */
#cmakedefine WITH_DEBUG_TRANSPORT