CMake/Source/CursesDialog/CMakeLists.txt

38 lines
1.4 KiB
CMake
Raw Normal View History

#=============================================================================
# CMake - Cross Platform Makefile Generator
# Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
2002-04-22 23:05:22 +04:00
SET( CURSES_SRCS
CursesDialog/cmCursesBoolWidget
CursesDialog/cmCursesCacheEntryComposite
CursesDialog/cmCursesDummyWidget
CursesDialog/cmCursesFilePathWidget
CursesDialog/cmCursesForm
CursesDialog/cmCursesLabelWidget
CursesDialog/cmCursesLongMessageForm
CursesDialog/cmCursesMainForm
CursesDialog/cmCursesPathWidget
CursesDialog/cmCursesStringWidget
CursesDialog/cmCursesWidget
CursesDialog/ccmake
2002-04-22 23:05:22 +04:00
)
2001-11-05 02:05:21 +03:00
INCLUDE_DIRECTORIES(${CMake_SOURCE_DIR}/Source/CursesDialog/form
${CMake_BINARY_DIR}/Source/CursesDialog/form)
2001-11-05 02:05:21 +03:00
INCLUDE_DIRECTORIES(${CURSES_INCLUDE_PATH})
2001-11-05 21:24:44 +03:00
2002-04-22 23:05:22 +04:00
ADD_EXECUTABLE(ccmake ${CURSES_SRCS} )
2002-08-22 16:25:58 +04:00
TARGET_LINK_LIBRARIES(ccmake CMakeLib)
TARGET_LINK_LIBRARIES(ccmake cmForm)
2001-11-13 22:22:29 +03:00
INSTALL_TARGETS(/bin ccmake)