68f248879c
Changes ======= - acmodel.cxx : we now have an optional new property (/sim/model/texture-path) that is used as the first path in wich aircraft textures are searched. If textures are not found there then the usual texture path or model path is used ; This allows to replace only needed textures for liveries ; - options.cxx : added a new --livery=xxx option for the user pleasure ; this will just set the /sim/model/texture-path property with /livery/xxxx - od_gauge.cxx, og_gauge.hxx, cockpit.cxx, cockpit.hxx, generic-instrumentation.xml : added an helper class that contain a rendering context for glass instrument or any other opengl drawn instrument ; - wxradar.cxx, instrument_mgr.cxx, wxradar.hxx : first experimentation of a weather radar ;
29 lines
1 KiB
Makefile
29 lines
1 KiB
Makefile
noinst_LIBRARIES = libInstrumentation.a
|
|
|
|
libInstrumentation_a_SOURCES = \
|
|
instrument_mgr.cxx instrument_mgr.hxx \
|
|
adf.cxx adf.hxx \
|
|
airspeed_indicator.cxx airspeed_indicator.hxx \
|
|
altimeter.cxx altimeter.hxx \
|
|
annunciator.cxx annunciator.hxx \
|
|
attitude_indicator.cxx attitude_indicator.hxx \
|
|
clock.cxx clock.hxx \
|
|
dme.cxx dme.hxx \
|
|
encoder.cxx encoder.hxx \
|
|
gps.cxx gps.hxx \
|
|
gyro.cxx gyro.hxx \
|
|
heading_indicator.cxx heading_indicator.hxx \
|
|
kr_87.hxx kr_87.cxx \
|
|
kt_70.cxx kt_70.hxx \
|
|
mag_compass.cxx mag_compass.hxx \
|
|
marker_beacon.cxx marker_beacon.hxx \
|
|
navradio.cxx navradio.hxx \
|
|
slip_skid_ball.cxx slip_skid_ball.hxx \
|
|
transponder.cxx transponder.hxx \
|
|
turn_indicator.cxx turn_indicator.hxx \
|
|
vertical_speed_indicator.cxx vertical_speed_indicator.hxx \
|
|
inst_vertical_speed_indicator.cxx inst_vertical_speed_indicator.hxx \
|
|
od_gauge.hxx od_gauge.cxx wxradar.hxx wxradar.cxx \
|
|
tacan.cxx tacan.hxx
|
|
|
|
INCLUDES = -I$(top_srcdir) -I$(top_srcdir)/src
|