1
0
Fork 0

Restore ENABLE_IAX

This commit is contained in:
Clément de l'Hamaide 2013-09-27 20:24:19 +02:00
parent 586fd45b08
commit bebc7235b3
2 changed files with 8 additions and 1 deletions

View file

@ -3,4 +3,6 @@ if (NOT SYSTEM_SQLITE)
add_subdirectory(sqlite3) add_subdirectory(sqlite3)
endif() endif()
add_subdirectory(iaxclient/lib) if (ENABLE_IAX)
add_subdirectory(iaxclient/lib)
endif()

View file

@ -141,6 +141,7 @@ option(ENABLE_RTI "Set to ON to build FlightGear with RTI support" OFF)
option(ENABLE_PROFILE "Set to ON to build FlightGear with gperftools profiling support" OFF) option(ENABLE_PROFILE "Set to ON to build FlightGear with gperftools profiling support" OFF)
option(JPEG_FACTORY "Set to ON to build FlightGear with JPEG-factory support" OFF) option(JPEG_FACTORY "Set to ON to build FlightGear with JPEG-factory support" OFF)
option(SYSTEM_SQLITE "Set to ON to build FlightGear with the system's SQLite3 library" OFF) option(SYSTEM_SQLITE "Set to ON to build FlightGear with the system's SQLite3 library" OFF)
option(ENABLE_IAX "Set to ON to build FlightGear with IAXClient/fgcom built-in (default)" ON)
# additional utilities # additional utilities
option(ENABLE_FGADMIN "Set to ON to build the FGADMIN application (default)" ON) option(ENABLE_FGADMIN "Set to ON to build the FGADMIN application (default)" ON)
@ -165,6 +166,10 @@ if(SP_FDMS)
set(ENABLE_SP_FDM 1) set(ENABLE_SP_FDM 1)
endif() endif()
if(ENABLE_FGCOM)
set(ENABLE_IAX 1)
endif()
# Setup MSVC 3rd party directories # Setup MSVC 3rd party directories
include( ConfigureMsvc3rdParty ) include( ConfigureMsvc3rdParty )