~ubuntu-branches/ubuntu/precise/freerdp/precise

« back to all changes in this revision

Viewing changes to client/CMakeLists.txt

  • Committer: Package Import Robot
  • Author(s): Otavio Salvador, Jeremy Bicha
  • Date: 2012-02-11 10:34:05 UTC
  • mfrom: (1.1.7) (9.1.3 sid)
  • Revision ID: package-import@ubuntu.com-20120211103405-mk0gjhjn70eeyxul
Tags: 1.0.1-1
[ Jeremy Bicha ]
* New upstream release. Closes: #659332.
* Updated symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
 
26
26
        # Build X11 Client
27
27
        find_suggested_package(X11)
28
 
        if(X11_FOUND)
 
28
        if(WITH_X11)
29
29
                add_subdirectory(X11)
30
30
        endif()
31
31
 
32
32
        # Build DirectFB Client
33
33
        find_optional_package(DirectFB)
34
 
        if(DIRECTFB_FOUND)
 
34
        if(WITH_DIRECTFB)
35
35
                add_subdirectory(DirectFB)
36
36
        endif()
37
37
else()