~ubuntu-branches/ubuntu/jaunty/kdegames/jaunty-backports

« back to all changes in this revision

Viewing changes to ksudoku/src/logic/CMakeLists.txt

  • Committer: Bazaar Package Importer
  • Author(s): Harald Sitter
  • Date: 2008-07-12 19:00:07 UTC
  • mfrom: (1.2.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20080712190007-z0itmj9r736o8vng
Tags: 4:4.0.98-0ubuntu1
* New upstream release candidate
* Bump Standards-Version to 3.8.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 
2
 
set(ksudoku_SRCS
 
1
set(ksudoku_logic_SRCS
3
2
        skgraph.cpp
4
3
        skbase.cpp
5
4
        skpuzzle.cpp
10
9
        solverstate.cpp
11
10
)
12
11
 
13
 
kde4_add_library(ksudoku_logic ${ksudoku_SRCS})
14
 
# make sure settings.h is available (created in ksudoku_gui)
15
 
add_dependencies(ksudoku_logic ksudoku_gui)
 
12
kde4_add_library(ksudoku_logic ${ksudoku_logic_SRCS})
 
13
target_link_libraries(ksudoku_logic ${QT_QTCORE_LIBRARY})