~ubuntu-branches/ubuntu/karmic/fltk1.1/karmic

« back to all changes in this revision

Viewing changes to fluid/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Aaron M. Ucko
  • Date: 2005-05-22 13:57:06 UTC
  • mfrom: (2.1.1 hoary)
  • Revision ID: james.westby@ubuntu.com-20050522135706-mchag24yf42lu7bu
Tags: 1.1.6-5
* Revert previous change, which seems to have been ineffective for some
  reason, in favor of commenting out the problematic Makefile rule
  altogether.  (Closes: #310151.)
* debian/control: Go back to specifying the URL as part of the
  description rather than via a non-standard field that doesn't seem to
  have caught on.  (Closes: #310240.)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
SET(CPPFILES
 
2
        Fl_Function_Type.cxx
 
3
        Fl_Menu_Type.cxx
 
4
        Fl_Group_Type.cxx
 
5
        Fl_Widget_Type.cxx
 
6
        Fl_Type.cxx
 
7
        Fl_Window_Type.cxx
 
8
        Fluid_Image.cxx
 
9
        code.cxx
 
10
        factory.cxx
 
11
        file.cxx
 
12
      fluid.cxx
 
13
        align_widget.cxx
 
14
        about_panel.cxx
 
15
        widget_panel.cxx
 
16
        alignment_panel.cxx
 
17
        function_panel.cxx
 
18
)
 
19
 
 
20
 
 
21
ADD_EXECUTABLE(fluid ${CPPFILES})
 
22
TARGET_LINK_LIBRARIES(fluid fltk fltk_images fltk_forms ${FLTK_PLATFORM_DEPENDENT_LIBS})
 
23
IF(OPENGL_FOUND)
 
24
        TARGET_LINK_LIBRARIES(fluid fltk_gl)
 
25
ENDIF(OPENGL_FOUND)