Update of /cvsroot/rtk/rtk/src/core/platform
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29739
Added Files:
CMakeLists.txt
Log Message:
Started working on /src/core/platform/* CMake build system.
--- NEW FILE: CMakeLists.txt ---
##
#
# RTK
# Fast and easy cross-platform GUI ToolKit.
#
# Copyright (C) 2001-200x RTK Development Team
#
# This library is free software; you can redistribute it and/or modify it
# under the terms of the slightly modified (see the "EXCEPTION NOTICE" part
# of RTK Library License) GNU Lesser General Public License as published
# by the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# This library 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 Lesser General Public
# License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# and along with this library; if not, write to the
# Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA .
#
# Also you should have received a copy of RTK Library License, if not please
# write an e-mail to some of RTK authors (listed in file AUTHORS).
#
# Bug reports: bu...@rt...
# Suggestions: rf...@rt...
#
# Authors (chronological order):
# Dejan Lekic , de...@nu...
# Contributors
# N/A
####################################################################
#-----------------------------------------------------------
# This will probably change in the future...
# ... when other platforms come into focus. :)
IF (WIN32)
SUBDIRS(win32)
ELSE (WIN32)
SUBDIRS(linux)
ENDIF (WIN32)
##-------------------------------------------------------------------
# LOG
#
IF (RTK_OPT_BCLOG)
WRITE_FILE(${RTK_BC_LOGFILE} "was in /src/core/platform\n" APPEND)
ENDIF (RTK_OPT_BCLOG)
##
# $Id: CMakeLists.txt,v 1.1 2004/03/05 18:24:52 leka Exp $
####################################################################
|