~ubuntu-branches/debian/sid/flightgear/sid

« back to all changes in this revision

Viewing changes to utils/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Markus Wanner, Markus Wanner, Rebecca Palmer
  • Date: 2014-01-21 22:31:02 UTC
  • mfrom: (1.3.1) (15.1.2 experimental)
  • Revision ID: package-import@ubuntu.com-20140121223102-cjw7g9le25acd119
Tags: 3.0.0~git20140204+c99ea4-1
[ Markus Wanner ]
* Upload to unstable.
* Adjust B-D to allow building on kfreebsd-*. Closes: #724686.
* Add a lintian-overrides on autotools; we use cmake.
* Upstream corrected the fgfs manpage. Closes: #556362.
* Drop unnecessary man page for gl-info. Closes: #698308.
* Drop README.Linux: it's outdated to the point of uselessness.
  Closes: #574173.
* Add an upper limit of libsimgear-dev versions that flightgear can be
  built with. Closes: #738436.
* Drop the libsvn-dev dependency, neither flightgear nor simgear depend
  on libsvn, anymore. Closes: #682947.
* List icons in debian/install rather than copying around from rules.
* Update menu entry for flightgear, add one for fgcom; add .xpm icons.
  Closes: #713924.
* flightgear.desktop: add German translation
* Bump Standards-Version to 3.9.5; no changes needed.

[ Rebecca Palmer ]
* New upstream release.
* Install the icons (based on code by Saikrishna Arcot).  (Not a
  complete fix for LP908153 as it only sets the menu/Dash icon, not the
  running window's icon, but better than nothing).
* Disable screensaver while running. Closes: LP#793599. Add required
  libdbus-1-dev dependency.
* Remove outdated README.Debian.
* Terrasync now works after just ticking the box. Closes: #252899.
* Always set Terrasync directory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
add_subdirectory(TerraSync)
2
 
add_subdirectory(fgviewer)
3
 
add_subdirectory(fgelev)
4
 
add_subdirectory(GPSsmooth)
5
 
 
6
 
if (FLTK_FOUND)
 
1
if(FLTK_FOUND)
7
2
    if (EXISTS ${FLTK_FLUID_EXECUTABLE})
8
3
        add_subdirectory(fgadmin)
9
4
    else ()
10
5
        message(STATUS "fluid executable not found, disabling fgadmin")
11
6
    endif ()
12
 
endif (FLTK_FOUND)
13
 
 
14
 
if (WITH_FGPANEL)
15
 
    add_subdirectory(fgpanel)
16
 
endif (WITH_FGPANEL)
 
7
endif()
17
8
 
18
9
# win32 is just excluded because of not having argument parsing there ...
19
10
if(RTI_FOUND AND NOT WIN32)
20
 
    add_subdirectory(fgai)
21
 
endif(RTI_FOUND AND NOT WIN32)
 
11
      add_subdirectory(fgai)
 
12
endif()
 
13
 
 
14
if(ENABLE_FGELEV)
 
15
    add_subdirectory(fgelev)
 
16
endif()
 
17
 
 
18
if(WITH_FGPANEL)
 
19
      add_subdirectory(fgpanel)
 
20
endif()
 
21
 
 
22
if(ENABLE_FGVIEWER)
 
23
    add_subdirectory(fgviewer)
 
24
endif()
 
25
 
 
26
if(ENABLE_GPSSMOOTH)
 
27
    add_subdirectory(GPSsmooth)
 
28
endif()
 
29
 
 
30
if(ENABLE_TERRASYNC)
 
31
    add_subdirectory(TerraSync)
 
32
endif()
 
33
 
 
34
if(ENABLE_FGCOM)
 
35
    add_subdirectory(fgcom)
 
36
endif()