2009-09-28 19:43:28 +04:00
|
|
|
#=============================================================================
|
|
|
|
# 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.
|
|
|
|
#=============================================================================
|
2001-11-05 19:52:27 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
set( CURSES_SRCS
|
2013-09-21 01:47:38 +04:00
|
|
|
CursesDialog/cmCursesOptionsWidget
|
2002-01-31 18:32:49 +03:00
|
|
|
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
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
include_directories(${CMake_SOURCE_DIR}/Source/CursesDialog/form
|
2007-08-27 17:01:14 +04:00
|
|
|
${CMake_BINARY_DIR}/Source/CursesDialog/form)
|
2012-08-13 21:47:32 +04:00
|
|
|
include_directories(${CURSES_INCLUDE_PATH})
|
2001-11-09 01:03:52 +03:00
|
|
|
|
2001-11-05 21:24:44 +03:00
|
|
|
|
2012-08-13 21:47:32 +04:00
|
|
|
add_executable(ccmake ${CURSES_SRCS} )
|
|
|
|
target_link_libraries(ccmake CMakeLib)
|
|
|
|
target_link_libraries(ccmake cmForm)
|
2001-11-13 22:22:29 +03:00
|
|
|
|
2013-08-26 19:50:08 +04:00
|
|
|
install(TARGETS ccmake DESTINATION bin)
|