719fbf0be6b7dd0252e3ac972f0bdf691487c055
[colorflood] / colorflood / src / CMakeLists.txt
1 # Copyright 2010 Serge Ziryukin <ftrvxmtrx@gmail.com>
2 #
3 # This program is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation; version 2 of the License.
6 #
7 # This program is distributed in the hope that it will be useful,
8 # but WITHOUT ANY WARRANTY; without even the implied warranty of
9 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 # GNU General Public License for more details.
11
12 set(src
13   field.cpp
14   main.cpp
15   window.cpp
16   colorscheme.cpp
17   )
18
19 set(moc
20   field.hpp
21   window.hpp
22   )
23
24 include(FindQt4)
25 find_package(Qt4 4.6.2 COMPONENTS QtCore QtGui REQUIRED)
26 include(${QT_USE_FILE})
27
28 QT4_WRAP_CPP(moc_src ${moc})
29
30 add_executable(colorflood ${moc_src} ${src})
31 target_link_libraries(colorflood ${QT_LIBRARIES})