Restore ENABLE_IAX
This commit is contained in:
parent
586fd45b08
commit
bebc7235b3
2 changed files with 8 additions and 1 deletions
4
3rdparty/CMakeLists.txt
vendored
4
3rdparty/CMakeLists.txt
vendored
|
@ -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()
|
||||||
|
|
|
@ -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 )
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue