~elementary-pantheon/switchboard-plug-startup-applications/trunk

« back to all changes in this revision

Viewing changes to src/CMakeLists.txt

  • Committer: Julien Spautz
  • Date: 2014-04-05 14:03:46 UTC
  • Revision ID: spautz.julien@gmail.com-20140405140346-w6w51lt3im1a0f4n
remove now unused files, update cmakelists.txt to use gtk+ 3.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
find_package (PkgConfig)
2
2
 
3
3
# Add all your dependencies to the list below
4
 
pkg_check_modules (DEPS REQUIRED gthread-2.0 gtk+-3.0 switchboard-2.0 granite)
 
4
pkg_check_modules (DEPS REQUIRED
 
5
    gthread-2.0
 
6
    gtk+-3.0>=3.12
 
7
    switchboard-2.0
 
8
    granite
 
9
)
5
10
 
6
11
add_definitions (${DEPS_CFLAGS})
7
12
link_libraries (${DEPS_LIBRARIES})
16
21
vala_precompile (VALA_C
17
22
    Plug.vala
18
23
    Utils.vala
19
 
    
20
24
    Backend/KeyFile.vala
21
25
    Backend/KeyFileFactory.vala
22
26
    Backend/DesktopFileEnumerator.vala
23
 
    
24
27
    Widgets/List.vala
25
 
    
26
28
    Dialogs/AppChooser.vala
27
 
    
28
29
    ${CMAKE_CURRENT_BINARY_DIR}/config.vala
29
30
PACKAGES
30
31
    switchboard-2.0
31
32
    granite
32
33
OPTIONS
33
34
    --thread
34
 
    --enable-experimental
35
 
    #--fatal-warnings
 
35
    --fatal-warnings
36
36
    --verbose
37
37
)
38
38