e3d27788e9ae62d93fd66f7abc901e582375d4cf
[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   )
17
18 set(moc
19   field.hpp
20   window.hpp
21   )
22
23 include(FindQt4)
24 find_package(Qt4 4.6.2 COMPONENTS QtCore QtGui REQUIRED)
25 include(${QT_USE_FILE})
26
27 QT4_WRAP_CPP(moc_src ${moc})
28
29 add_executable(colorflood ${moc_src} ${src})
30 target_link_libraries(colorflood ${QT_LIBRARIES})