openlase/output/CMakeLists.txt
2010-11-24 02:10:10 +01:00

28 lines
1.1 KiB
CMake

# OpenLase - a realtime laser graphics toolkit
#
# Copyright (C) 2009-2010 Hector Martin "marcan" <hector@marcansoft.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 or version 3.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
#
include(${QT_USE_FILE})
QT4_WRAP_UI(output_UIS_H output_settings.ui)
QT4_AUTOMOC(output_settings.cpp output.cpp)
include_directories(${CMAKE_CURRENT_BINARY_DIR})
add_executable(output output.cpp output_settings.cpp ${output_UIS_H})
target_link_libraries(output ${JACK_LIBRARIES} ${QT_LIBRARIES})