Among other things, this commit removes ntk-config in favor of providing pkg-config files (ntk, ntk_images, and ntk_gl) TODO: fix documentation and test program generation.tags/v1.3.1000
| @@ -4,5 +4,5 @@ | |||
| *.[ao] | |||
| TAGS | |||
| .nfs* | |||
| make.conf | |||
| .deps | |||
| build | |||
| .waf* | |||
| @@ -1,49 +0,0 @@ | |||
| # | |||
| # FLTKConfig.cmake - FLTK CMake configuration file for external projects. | |||
| # | |||
| # This file is configured by FLTK and used by the UseFLTK.cmake module | |||
| # to load FLTK's settings for an external project. | |||
| set(FLTK_FOUND TRUE) | |||
| set(FLTK_VERSION @FLTK_VERSION_FULL@) | |||
| set(FLTK_FLUID_EXECUTABLE "@FLTK_FLUID_PATH@") | |||
| if(NOT "@EXE_LINKER_FLAGS@" STREQUAL "") | |||
| set(FLTK_EXE_LINKER_FLAGS "@EXE_LINKER_FLAGS@") | |||
| endif(NOT "@EXE_LINKER_FLAGS@" STREQUAL "") | |||
| set(FLTK_USE_FILE "@PREFIX_CONFIG@/UseFLTK.cmake") | |||
| set(FLTK_DIR "@PREFIX_CONFIG@") | |||
| set(FLTK_BIN_DIR "@PREFIX_BIN@") | |||
| set(FLTK_LIB_DIR "@PREFIX_LIB@") | |||
| set(FLTK_INCLUDE_DIR "@PREFIX_INCLUDE@") | |||
| set(FLTK_DATA_DIR "@PREFIX_DATA@") | |||
| set(FLTK_DOC_DIR "@PREFIX_DOC@") | |||
| set(FLTK_SHARED_LIBS_FOUND @OPTION_BUILD_SHARED_LIBS@) | |||
| set(FLTK_CAIRO_FOUND @FLTK_CAIRO_FOUND@) | |||
| set(FLTK_GL_FOUND @FLTK_GL_FOUND@) | |||
| set(FLTK_THREADS_FOUND @FLTK_THREADS_FOUND@) | |||
| set(FLTK_PTHREADS_FOUND @FLTK_PTHREADS_FOUND@) | |||
| set(FLTK_BUILTIN_JPEG_FOUND @FLTK_BUILTIN_JPEG_FOUND@) | |||
| set(FLTK_BUILTIN_ZLIB_FOUND @FLTK_BUILTIN_ZLIB_FOUND@) | |||
| set(FLTK_BUILTIN_PNG_FOUND @FLTK_BUILTIN_PNG_FOUND@) | |||
| set(FLTK_XINERAMA_FOUND @FLTK_XINERAMA_FOUND@) | |||
| set(FLTK_XFT_FOUND @FLTK_XFT_FOUND@) | |||
| set(FLTK_XDBE_FOUND @FLTK_XDBE_FOUND@) | |||
| set(FLTK_CAIRO_FOUND @FLTK_CAIRO_FOUND@) | |||
| set(FLTK_GL_FOUND @FLTK_GL_FOUND@) | |||
| set(FLTK_THREADS_FOUND @FLTK_THREADS_FOUND@) | |||
| set(FLTK_PTHREADS_FOUND @FLTK_PTHREADS_FOUND@) | |||
| set(FLTK_BUILTIN_JPEG_FOUND @FLTK_BUILTIN_JPEG_FOUND@) | |||
| set(FLTK_BUILTIN_ZLIB_FOUND @FLTK_BUILTIN_ZLIB_FOUND@) | |||
| set(FLTK_BUILTIN_PNG_FOUND @FLTK_BUILTIN_PNG_FOUND@) | |||
| set(FLTK_XINERAMA_FOUND @FLTK_XINERAMA_FOUND@) | |||
| set(FLTK_XFT_FOUND @FLTK_XFT_FOUND@) | |||
| set(FLTK_XDBE_FOUND @FLTK_XDBE_FOUND@) | |||
| include("@PREFIX_CONFIG@/FLTKLibraries.cmake") | |||
| @@ -1,8 +0,0 @@ | |||
| # | |||
| # automatically generated - do not edit | |||
| include_directories("@PREFIX_INCLUDE@") | |||
| if(FLTK_EXE_LINKER_FLAGS) | |||
| list(APPEND CMAKE_EXE_LINKER_FLAGS "${FLTK_EXE_LINKER_FLAGS}") | |||
| endif(FLTK_EXE_LINKER_FLAGS) | |||
| @@ -1,19 +0,0 @@ | |||
| if(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") | |||
| message(FATAL_ERROR | |||
| "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") | |||
| endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") | |||
| file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) | |||
| string(REGEX REPLACE "\n" ";" files "${files}") | |||
| foreach(file ${files}) | |||
| message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") | |||
| exec_program("@CMAKE_COMMAND@" | |||
| ARGS "-E remove -f \"$ENV{DESTDIR}${file}\"" | |||
| OUTPUT_VARIABLE rm_out | |||
| RETURN_VALUE rm_retval | |||
| ) | |||
| if(NOT "${rm_retval}" STREQUAL 0) | |||
| message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") | |||
| endif(NOT "${rm_retval}" STREQUAL 0) | |||
| endforeach(file) | |||
| @@ -1,17 +0,0 @@ | |||
| # On unix create backward compatibility symlinks | |||
| if(NOT EXISTS @PREFIX_INCLUDE@/Fl) | |||
| EXECUTE_PROCESS(COMMAND ln -s FL Fl | |||
| WORKING_DIRECTORY @PREFIX_INCLUDE@ | |||
| ) | |||
| endif(NOT EXISTS @PREFIX_INCLUDE@/Fl) | |||
| file(GLOB FLTK_HEADER_FILES @PREFIX_INCLUDE@/FL/*.H) | |||
| foreach(file ${FLTK_HEADER_FILES}) | |||
| GET_FILENAME_COMPONENT(nameWE ${file} NAME_WE) | |||
| if(NOT EXISTS @PREFIX_INCLUDE@/FL/${nameWE}.h) | |||
| EXECUTE_PROCESS(COMMAND ln -s ${nameWE}.H ${nameWE}.h | |||
| WORKING_DIRECTORY @PREFIX_INCLUDE@/FL | |||
| ) | |||
| endif() | |||
| endforeach(file) | |||
| @@ -1,10 +0,0 @@ | |||
| #include <dirent.h> | |||
| int func (const char *d, dirent ***list, void *sort) { | |||
| int n = scandir(d, list, 0, (int(*)(const dirent **, const dirent **))sort); | |||
| } | |||
| int main() { | |||
| return 0; | |||
| } | |||
| @@ -1,678 +0,0 @@ | |||
| # | |||
| # "$Id: CMakeLists.txt 8198 2011-01-06 10:24:58Z manolo $" | |||
| # | |||
| # Main CMakeLists.txt to build the FLTK project using CMake (www.cmake.org) | |||
| # Written by Andy Cedilnik and Julien Jomier | |||
| # | |||
| # Copyright 1998-2010 by Bill Spitzak and others. | |||
| # | |||
| # This library is free software; you can redistribute it and/or | |||
| # modify it under the terms of the GNU Library General Public | |||
| # License as published by the Free Software Foundation; either | |||
| # version 2 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 | |||
| # Library General Public License for more details. | |||
| # | |||
| # You should have received a copy of the GNU Library General Public | |||
| # License along with this library; if not, write to the Free Software | |||
| # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| # USA. | |||
| # | |||
| # Please report all bugs and problems on the following page: | |||
| # | |||
| # http:#www.fltk.org/str.php | |||
| # | |||
| ####################################################################### | |||
| # basic setup | |||
| ####################################################################### | |||
| project(FLTK) | |||
| cmake_minimum_required(VERSION 2.6) | |||
| # The FLTK version | |||
| set(FLTK_VERSION_MAJOR "1") | |||
| set(FLTK_VERSION_MINOR "3") | |||
| set(FLTK_VERSION_PATCH "0") | |||
| set(FLTK_VERSION "${FLTK_VERSION_MAJOR}.${FLTK_VERSION_MINOR}") | |||
| set(FLTK_VERSION_FULL "${FLTK_VERSION}.${FLTK_VERSION_PATCH}") | |||
| set(EXECUTABLE_OUTPUT_PATH ${FLTK_BINARY_DIR}/bin) | |||
| set(LIBRARY_OUTPUT_PATH ${FLTK_BINARY_DIR}/lib) | |||
| set(ARCHIVE_OUTPUT_PATH ${FLTK_BINARY_DIR}/lib) | |||
| # Search for modules in the FLTK source dir first | |||
| set(CMAKE_MODULE_PATH "${FLTK_SOURCE_DIR}/CMake") | |||
| include_directories(${FLTK_BINARY_DIR} ${FLTK_SOURCE_DIR}) | |||
| ####################################################################### | |||
| # platform dependent information | |||
| ####################################################################### | |||
| include(TestBigEndian) | |||
| TEST_BIG_ENDIAN(WORDS_BIGENDIAN) | |||
| if(APPLE) | |||
| set(__APPLE_QUARTZ__ 1) | |||
| set(HAVE_STRTOLL 1) | |||
| set(HAVE_STRCASECMP 1) | |||
| set(HAVE_DIRENT_H 1) | |||
| set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -framework Cocoa") | |||
| endif(APPLE) | |||
| if(WIN32) | |||
| if(MSVC) | |||
| add_definitions(-DWIN32_LEAN_AND_MEAN) | |||
| add_definitions(-D_CRT_SECURE_NO_WARNINGS) | |||
| endif(MSVC) | |||
| if(CMAKE_C_COMPILER_ID STREQUAL GNU) | |||
| set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,-subsystem,windows") | |||
| endif(CMAKE_C_COMPILER_ID STREQUAL GNU) | |||
| if(MINGW AND EXISTS /mingw) | |||
| list(APPEND CMAKE_PREFIX_PATH /mingw) | |||
| endif(MINGW AND EXISTS /mingw) | |||
| endif(WIN32) | |||
| ####################################################################### | |||
| # size of ints | |||
| include(CheckTypeSize) | |||
| CHECK_TYPE_SIZE(short SIZEOF_SHORT) | |||
| CHECK_TYPE_SIZE(int SIZEOF_INT) | |||
| CHECK_TYPE_SIZE(long SIZEOF_LONG) | |||
| CHECK_TYPE_SIZE("long long" HAVE_LONG_LONG) | |||
| if(${SIZEOF_SHORT} MATCHES "^2$") | |||
| set(U16 "unsigned short") | |||
| endif(${SIZEOF_SHORT} MATCHES "^2$") | |||
| if(${SIZEOF_INT} MATCHES "^4$") | |||
| set(U32 "unsigned") | |||
| else() | |||
| if(${SIZEOF_LONG} MATCHES "^4$") | |||
| set(U32 "unsigned long") | |||
| endif(${SIZEOF_LONG} MATCHES "^4$") | |||
| endif(${SIZEOF_INT} MATCHES "^4$") | |||
| if(${SIZEOF_INT} MATCHES "^8$") | |||
| set(U64 "unsigned") | |||
| else() | |||
| if(${SIZEOF_LONG} MATCHES "^8$") | |||
| set(U64 "unsigned long") | |||
| endif(${SIZEOF_LONG} MATCHES "^8$") | |||
| endif(${SIZEOF_INT} MATCHES "^8$") | |||
| ####################################################################### | |||
| # check for headers, libraries and functions | |||
| ####################################################################### | |||
| # headers | |||
| find_file(HAVE_ALSA_ASOUNDLIB_H alsa/asoundlib.h) | |||
| find_file(HAVE_DIRENT_H dirent.h) | |||
| find_file(HAVE_DLFCN_H dlfcn.h) | |||
| find_file(HAVE_FREETYPE_H freetype.h PATH_SUFFIXES freetype2) | |||
| find_file(HAVE_GL_GL_H GL/gl.h) | |||
| find_file(HAVE_GL_GLU_H GL/glu.h) | |||
| find_file(HAVE_LIBPNG_PNG_H libpng/png.h) | |||
| find_file(HAVE_LOCALE_H locale.h) | |||
| find_file(HAVE_NDIR_H ndir.h) | |||
| find_file(HAVE_OPENGL_GLU_H OpenGL/glu.h) | |||
| find_file(HAVE_PNG_H png.h) | |||
| find_file(HAVE_PTHREAD_H pthread.h) | |||
| find_file(HAVE_STDIO_H stdio.h) | |||
| find_file(HAVE_STRINGS_H strings.h) | |||
| find_file(HAVE_SYS_DIR_H sys/dir.h) | |||
| find_file(HAVE_SYS_NDIR_H sys/ndir.h) | |||
| find_file(HAVE_SYS_SELECT_H sys/select.h) | |||
| find_file(HAVE_SYS_STDTYPES_H sys/stdtypes.h) | |||
| mark_as_advanced(HAVE_ALSA_ASOUNDLIB_H HAVE_DIRENT_H HAVE_DLFCN_H) | |||
| mark_as_advanced(HAVE_FREETYPE_H HAVE_GL_GL_H HAVE_GL_GLU_H) | |||
| mark_as_advanced(HAVE_LIBPNG_PNG_H HAVE_LOCALE_H HAVE_NDIR_H) | |||
| mark_as_advanced(HAVE_OPENGL_GLU_H HAVE_PNG_H HAVE_PTHREAD_H) | |||
| mark_as_advanced(HAVE_STDIO_H HAVE_STRINGS_H HAVE_SYS_DIR_H) | |||
| mark_as_advanced(HAVE_SYS_NDIR_H HAVE_SYS_SELECT_H) | |||
| mark_as_advanced(HAVE_SYS_STDTYPES_H) | |||
| # where to find freetype headers | |||
| find_path(FREETYPE_PATH freetype/config/ftheader.h PATH_SUFFIXES freetype2) | |||
| if(FREETYPE_PATH) | |||
| include_directories(${FREETYPE_PATH}) | |||
| endif(FREETYPE_PATH) | |||
| mark_as_advanced(FREETYPE_PATH) | |||
| ####################################################################### | |||
| # libraries | |||
| find_library(LIB_CAIRO cairo) | |||
| find_library(LIB_fontconfig fontconfig) | |||
| find_library(LIB_freetype freetype) | |||
| find_library(LIB_GL GL) | |||
| find_library(LIB_MesaGL MesaGL) | |||
| find_library(LIB_jpeg jpeg) | |||
| find_library(LIB_png png) | |||
| find_library(LIB_zlib z) | |||
| mark_as_advanced(LIB_CAIRO LIB_fontconfig LIB_freetype) | |||
| mark_as_advanced(LIB_GL LIB_MesaGL) | |||
| mark_as_advanced(LIB_jpeg LIB_png LIB_zlib) | |||
| ####################################################################### | |||
| # functions | |||
| include(CheckFunctionExists) | |||
| if(HAVE_DLFCN_H) | |||
| set(CMAKE_REQUIRED_LIBRARIES dl) | |||
| endif(HAVE_DLFCN_H) | |||
| CHECK_FUNCTION_EXISTS(dlsym HAVE_DLSYM) | |||
| CHECK_FUNCTION_EXISTS(localeconv HAVE_LOCALECONV) | |||
| if(LIB_png) | |||
| set(CMAKE_REQUIRED_LIBRARIES png) | |||
| endif(LIB_png) | |||
| CHECK_FUNCTION_EXISTS(png_get_valid HAVE_PNG_GET_VALID) | |||
| CHECK_FUNCTION_EXISTS(png_set_tRNS_to_alpha HAVE_PNG_SET_TRNS_TO_ALPHA) | |||
| CHECK_FUNCTION_EXISTS(scandir HAVE_SCANDIR) | |||
| CHECK_FUNCTION_EXISTS(snprintf HAVE_SNPRINTF) | |||
| # not really true but we convert strcasecmp calls to _stricmp calls in flstring.h | |||
| if(MSVC) | |||
| set(HAVE_STRCASECMP 1) | |||
| endif(MSVC) | |||
| CHECK_FUNCTION_EXISTS(strcasecmp HAVE_STRCASECMP) | |||
| CHECK_FUNCTION_EXISTS(strlcat HAVE_STRLCAT) | |||
| CHECK_FUNCTION_EXISTS(strlcpy HAVE_STRLCPY) | |||
| CHECK_FUNCTION_EXISTS(strtoll HAVE_STRTOLL) | |||
| CHECK_FUNCTION_EXISTS(vsnprintf HAVE_VSNPRINTF) | |||
| set(CMAKE_REQUIRED_LIBRARIES) | |||
| if(HAVE_SCANDIR AND NOT HAVE_SCANDIR_POSIX) | |||
| set(MSG "POSIX compatible scandir") | |||
| message(STATUS "Looking for ${MSG}") | |||
| try_compile(V | |||
| ${FLTK_BINARY_DIR} | |||
| ${FLTK_SOURCE_DIR}/CMake/posixScandir.cxx | |||
| ) | |||
| if(V) | |||
| message(STATUS "${MSG} - found") | |||
| set(HAVE_SCANDIR_POSIX 1 CACHE INTERNAL "") | |||
| else() | |||
| message(STATUS "${MSG} - not found") | |||
| set(HAVE_SCANDIR_POSIX HAVE_SCANDIR_POSIX-NOTFOUND) | |||
| endif(V) | |||
| endif(HAVE_SCANDIR AND NOT HAVE_SCANDIR_POSIX) | |||
| mark_as_advanced(HAVE_SCANDIR_POSIX) | |||
| ####################################################################### | |||
| # options | |||
| ####################################################################### | |||
| set(OPTION_OPTIM "" | |||
| CACHE STRING | |||
| "custom optimization flags" | |||
| ) | |||
| add_definitions(${OPTION_OPTIM}) | |||
| ####################################################################### | |||
| set(OPTION_ARCHFLAGS "" | |||
| CACHE STRING | |||
| "custom architecture flags" | |||
| ) | |||
| add_definitions(${OPTION_ARCHFLAGS}) | |||
| ####################################################################### | |||
| set(OPTION_PREFIX_BIN "" | |||
| CACHE STRING | |||
| "where to install executables - leave empty to use {CMAKE_INSTALL_PREFIX}/bin" | |||
| ) | |||
| if(OPTION_PREFIX_BIN) | |||
| set(PREFIX_BIN ${OPTION_PREFIX_BIN} CACHE INTERNAL "" FORCE) | |||
| else() | |||
| set(PREFIX_BIN ${CMAKE_INSTALL_PREFIX}/bin CACHE INTERNAL "" FORCE) | |||
| endif(OPTION_PREFIX_BIN) | |||
| ####################################################################### | |||
| set(OPTION_PREFIX_LIB "" | |||
| CACHE STRING | |||
| "where to install libraries - leave empty to use {CMAKE_INSTALL_PREFIX}/lib" | |||
| ) | |||
| if(OPTION_PREFIX_LIB) | |||
| set(PREFIX_LIB ${OPTION_PREFIX_LIB} CACHE INTERNAL "" FORCE) | |||
| else() | |||
| set(PREFIX_LIB ${CMAKE_INSTALL_PREFIX}/lib CACHE INTERNAL "" FORCE) | |||
| endif(OPTION_PREFIX_LIB) | |||
| ####################################################################### | |||
| set(OPTION_PREFIX_INCLUDE "" | |||
| CACHE STRING | |||
| "where to install include files - leave empty to use {CMAKE_INSTALL_PREFIX}/include" | |||
| ) | |||
| if(OPTION_PREFIX_INCLUDE) | |||
| set(PREFIX_INCLUDE ${OPTION_PREFIX_INCLUDE} CACHE INTERNAL "" FORCE) | |||
| else() | |||
| set(PREFIX_INCLUDE ${CMAKE_INSTALL_PREFIX}/include CACHE INTERNAL "" FORCE) | |||
| endif(OPTION_PREFIX_INCLUDE) | |||
| ####################################################################### | |||
| set(OPTION_PREFIX_DATA "" | |||
| CACHE STRING | |||
| "where to install data files - leave empty to use {CMAKE_INSTALL_PREFIX}/share/FLTK" | |||
| ) | |||
| if(OPTION_PREFIX_DATA) | |||
| set(PREFIX_DATA ${OPTION_PREFIX_DATA} CACHE INTERNAL "" FORCE) | |||
| else() | |||
| set(PREFIX_DATA ${CMAKE_INSTALL_PREFIX}/share/FLTK CACHE INTERNAL "" FORCE) | |||
| endif(OPTION_PREFIX_DATA) | |||
| ####################################################################### | |||
| set(OPTION_PREFIX_DOC "" | |||
| CACHE STRING | |||
| "where to install doc files - leave empty to use {CMAKE_INSTALL_PREFIX}/share/doc/FLTK" | |||
| ) | |||
| if(OPTION_PREFIX_DOC) | |||
| set(PREFIX_DOC ${OPTION_PREFIX_DOC} CACHE INTERNAL "" FORCE) | |||
| else() | |||
| set(PREFIX_DOC ${CMAKE_INSTALL_PREFIX}/share/doc/FLTK CACHE INTERNAL "" FORCE) | |||
| endif(OPTION_PREFIX_DOC) | |||
| ####################################################################### | |||
| if(WIN32) | |||
| set(DEFAULT_CONFIG "${CMAKE_INSTALL_PREFIX}/CMake") | |||
| elseif(APPLE) | |||
| set(DEFAULT_CONFIG "${CMAKE_INSTALL_PREFIX}/FLTK/.framework/Resources/CMake") | |||
| else() | |||
| set(DEFAULT_CONFIG "${CMAKE_INSTALL_PREFIX}/lib/FLTK-${FLTK_VERSION}") | |||
| endif(WIN32) | |||
| set(OPTION_PREFIX_CONFIG "" | |||
| CACHE STRING | |||
| "where to install CMake config files - leave empty to use ${DEFAULT_CONFIG}" | |||
| ) | |||
| if(OPTION_PREFIX_CONFIG) | |||
| set(PREFIX_CONFIG "${OPTION_PREFIX_CONFIG}" CACHE INTERNAL "" FORCE) | |||
| else() | |||
| set(PREFIX_CONFIG "${DEFAULT_CONFIG}" CACHE INTERNAL "" FORCE) | |||
| endif(OPTION_PREFIX_CONFIG) | |||
| ####################################################################### | |||
| if(CMAKE_HOST_UNIX) | |||
| set(OPTION_PREFIX_MAN "" | |||
| CACHE STRING | |||
| "where to install man files - leave empty to use {CMAKE_INSTALL_PREFIX}/man" | |||
| ) | |||
| if(OPTION_PREFIX_MAN) | |||
| set(PREFIX_MAN ${OPTION_PREFIX_MAN} CACHE INTERNAL "" FORCE) | |||
| else() | |||
| set(PREFIX_MAN ${CMAKE_INSTALL_PREFIX}/man CACHE INTERNAL "" FORCE) | |||
| endif(OPTION_PREFIX_MAN) | |||
| option(OPTION_CREATE_LINKS "create backwards compatibility links" OFF) | |||
| endif(CMAKE_HOST_UNIX) | |||
| ####################################################################### | |||
| if(APPLE) | |||
| option(OPTION_APPLE_X11 "use X11" OFF) | |||
| endif(APPLE) | |||
| if(NOT APPLE OR OPTION_APPLE_X11) | |||
| include(FindX11) | |||
| if(X11_FOUND) | |||
| set(USE_X11 1) | |||
| list(APPEND FLTK_CFLAGS -DUSE_X11) | |||
| list(APPEND FLTK_LDLIBS -lX11) | |||
| endif(X11_FOUND) | |||
| endif(NOT APPLE OR OPTION_APPLE_X11) | |||
| ####################################################################### | |||
| option(OPTION_USE_POLL "use poll if available" OFF) | |||
| if(OPTION_USE_POLL) | |||
| CHECK_FUNCTION_EXISTS(poll USE_POLL) | |||
| endif(OPTION_USE_POLL) | |||
| ####################################################################### | |||
| option(OPTION_BUILD_SHARED_LIBS "Build shared libraries" OFF) | |||
| ####################################################################### | |||
| option(OPTION_BUILD_EXAMPLES "build example programs" ON) | |||
| ####################################################################### | |||
| include(FindPkgConfig) | |||
| option(OPTION_CAIRO "use lib Cairo" OFF) | |||
| option(OPTION_CAIROEXT | |||
| "use fltk code instrumentation for cairo extended use" OFF | |||
| ) | |||
| if(OPTION_CAIRO OR OPTION_CAIROEXT AND LIB_CAIRO) | |||
| pkg_search_module(PKG_CAIRO cairo) | |||
| endif(OPTION_CAIRO OR OPTION_CAIROEXT AND LIB_CAIRO) | |||
| if(PKG_CAIRO_FOUND) | |||
| set(FLTK_HAVE_CAIRO 1) | |||
| # add_subdirectory(cairo) | |||
| list(APPEND FLTK_LDLIBS -lcairo -lpixman-1) | |||
| include_directories(${PKG_CAIRO_INCLUDE_DIRS}) | |||
| string(REPLACE ";" " " CAIROFLAGS "${PKG_CAIRO_CFLAGS}") | |||
| endif(PKG_CAIRO_FOUND) | |||
| if(LIB_CAIRO AND OPTION_CAIROEXT AND PKG_CAIRO_FOUND) | |||
| set(FLTK_USE_CAIRO 1) | |||
| set(FLTK_CAIRO_FOUND TRUE) | |||
| else() | |||
| set(FLTK_CAIRO_FOUND FALSE) | |||
| endif(LIB_CAIRO AND OPTION_CAIROEXT AND PKG_CAIRO_FOUND) | |||
| ####################################################################### | |||
| set(HAVE_GL LIB_GL OR LIB_MesaGL) | |||
| if(HAVE_GL) | |||
| option(OPTION_USE_GL "use OpenGL" ON) | |||
| endif(HAVE_GL) | |||
| if(OPTION_USE_GL) | |||
| include(FindOpenGL) | |||
| endif(OPTION_USE_GL) | |||
| if(OPENGL_FOUND) | |||
| set(CMAKE_REQUIRED_INCLUDES ${OPENGL_INCLUDE_DIR}/GL) | |||
| set(CMAKE_REQUIRED_LIBRARIES -lGLU -lGL) | |||
| CHECK_FUNCTION_EXISTS(glXGetProcAddressARB HAVE_GLXGETPROCADDRESSARB) | |||
| set(FLTK_GL_FOUND TRUE) | |||
| else() | |||
| set(FLTK_GL_FOUND FALSE) | |||
| endif(OPENGL_FOUND) | |||
| ####################################################################### | |||
| option(OPTION_USE_THREADS "use multi-threading" ON) | |||
| if(OPTION_USE_THREADS) | |||
| include(FindThreads) | |||
| endif(OPTION_USE_THREADS) | |||
| if(OPTION_USE_THREADS AND CMAKE_HAVE_THREADS_LIBRARY) | |||
| add_definitions("-D_THREAD_SAFE -D_REENTRANT") | |||
| set(USE_THREADS 1) | |||
| set(FLTK_THREADS_FOUND TRUE) | |||
| else() | |||
| set(FLTK_THREADS_FOUND FALSE) | |||
| endif(OPTION_USE_THREADS AND CMAKE_HAVE_THREADS_LIBRARY) | |||
| if(OPTION_USE_THREADS AND CMAKE_USE_PTHREADS_INIT) | |||
| set(HAVE_PTHREAD 1) | |||
| list(APPEND FLTK_LDLIBS -lpthread) | |||
| list(APPEND FLTK_CFLAGS -D_THREAD_SAFE -D_REENTRANT) | |||
| set(FLTK_PTHREADS_FOUND TRUE) | |||
| else() | |||
| set(HAVE_PTHREAD 0) | |||
| set(HAVE_PTHREAD_H 0) | |||
| set(FLTK_PTHREADS_FOUND FALSE) | |||
| endif(OPTION_USE_THREADS AND CMAKE_USE_PTHREADS_INIT) | |||
| ####################################################################### | |||
| option(OPTION_LARGE_FILE "enable large file support" ON) | |||
| if(OPTION_LARGE_FILE) | |||
| if(NOT MSVC) | |||
| add_definitions(-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE) | |||
| list(APPEND FLTK_CFLAGS -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE) | |||
| endif(NOT MSVC) | |||
| endif(OPTION_LARGE_FILE) | |||
| ####################################################################### | |||
| option(OPTION_USE_SYSTEM_LIBJPEG "Use's system libjpeg" ON) | |||
| if(OPTION_USE_SYSTEM_LIBJPEG AND LIB_jpeg) | |||
| include(FindJPEG) | |||
| endif(OPTION_USE_SYSTEM_LIBJPEG AND LIB_jpeg) | |||
| if(OPTION_USE_SYSTEM_LIBJPEG AND JPEG_FOUND) | |||
| set(FLTK_JPEG_LIBRARIES ${JPEG_LIBRARIES}) | |||
| include_directories(${JPEG_INCLUDE_DIR}) | |||
| set(FLTK_BUILTIN_JPEG_FOUND FALSE) | |||
| else() | |||
| add_subdirectory(jpeg) | |||
| set(FLTK_JPEG_LIBRARIES ntk_jpeg) | |||
| include_directories(${FLTK_SOURCE_DIR}/jpeg) | |||
| set(FLTK_BUILTIN_JPEG_FOUND TRUE) | |||
| endif(OPTION_USE_SYSTEM_LIBJPEG AND JPEG_FOUND) | |||
| if(OPTION_USE_SYSTEM_LIBJPEG AND NOT JPEG_FOUND) | |||
| message(STATUS "\ncannot find system jpeg library - using built-in\n") | |||
| endif(OPTION_USE_SYSTEM_LIBJPEG AND NOT JPEG_FOUND) | |||
| set(HAVE_LIBJPEG 1) | |||
| ####################################################################### | |||
| option(OPTION_USE_SYSTEM_ZLIB "Use's system zlib" ON) | |||
| if(OPTION_USE_SYSTEM_ZLIB AND LIB_zlib) | |||
| include(FindZLIB) | |||
| endif(OPTION_USE_SYSTEM_ZLIB AND LIB_zlib) | |||
| if(OPTION_USE_SYSTEM_ZLIB AND ZLIB_FOUND) | |||
| set(FLTK_ZLIB_LIBRARIES ${ZLIB_LIBRARIES}) | |||
| include_directories(${ZLIB_INCLUDE_DIRS}) | |||
| set(FLTK_BUILTIN_ZLIB_FOUND FALSE) | |||
| else() | |||
| add_subdirectory(zlib) | |||
| set(FLTK_ZLIB_LIBRARIES ntk_z) | |||
| set(ZLIB_INCLUDE_DIR ${FLTK_SOURCE_DIR}/zlib) | |||
| include_directories(${FLTK_SOURCE_DIR}/zlib) | |||
| set(FLTK_BUILTIN_ZLIB_FOUND TRUE) | |||
| endif(OPTION_USE_SYSTEM_ZLIB AND ZLIB_FOUND) | |||
| if(OPTION_USE_SYSTEM_ZLIB AND NOT ZLIB_FOUND) | |||
| message(STATUS "\ncannot find system zlib library - using built-in\n") | |||
| endif(OPTION_USE_SYSTEM_ZLIB AND NOT ZLIB_FOUND) | |||
| set(HAVE_LIBZ 1) | |||
| ####################################################################### | |||
| option(OPTION_USE_SYSTEM_LIBPNG "Use's system libpng" ON) | |||
| if(OPTION_USE_SYSTEM_LIBPNG AND LIB_png) | |||
| include(FindPNG) | |||
| endif(OPTION_USE_SYSTEM_LIBPNG AND LIB_png) | |||
| if(OPTION_USE_SYSTEM_LIBPNG AND PNG_FOUND) | |||
| set(FLTK_PNG_LIBRARIES ${PNG_LIBRARIES}) | |||
| include_directories(${PNG_INCLUDE_DIR}) | |||
| add_definitions(${PNG_DEFINITIONS}) | |||
| set(FLTK_BUILTIN_PNG_FOUND FALSE) | |||
| else() | |||
| add_subdirectory(png) | |||
| set(FLTK_PNG_LIBRARIES ntk_png) | |||
| set(HAVE_PNG_H 1) | |||
| set(HAVE_PNG_GET_VALID 1) | |||
| set(HAVE_PNG_SET_TRNS_TO_ALPHA 1) | |||
| include_directories(${FLTK_SOURCE_DIR}/png) | |||
| set(FLTK_BUILTIN_PNG_FOUND TRUE) | |||
| endif(OPTION_USE_SYSTEM_LIBPNG AND PNG_FOUND) | |||
| if(OPTION_USE_SYSTEM_LIBPNG AND NOT PNG_FOUND) | |||
| message(STATUS "\ncannot find system png library - using built-in\n") | |||
| endif(OPTION_USE_SYSTEM_LIBPNG AND NOT PNG_FOUND) | |||
| set(HAVE_LIBPNG 1) | |||
| ####################################################################### | |||
| if(X11_Xinerama_FOUND) | |||
| option(OPTION_USE_XINERAMA "use lib Xinerama" ON) | |||
| endif(X11_Xinerama_FOUND) | |||
| if(OPTION_USE_XINERAMA) | |||
| set(HAVE_XINERAMA ${X11_Xinerama_FOUND}) | |||
| include_directories(${X11_Xinerama_INCLUDE_PATH}) | |||
| list(APPEND FLTK_LDLIBS -lXinerama) | |||
| set(FLTK_XINERAMA_FOUND TRUE) | |||
| else() | |||
| set(FLTK_XINERAMA_FOUND FALSE) | |||
| endif(OPTION_USE_XINERAMA) | |||
| ####################################################################### | |||
| if(X11_Xft_FOUND) | |||
| option(OPTION_USE_XFT "use lib Xft" ON) | |||
| endif(X11_Xft_FOUND) | |||
| if(OPTION_USE_XFT) | |||
| set(USE_XFT X11_Xft_FOUND) | |||
| list(APPEND FLTK_LDLIBS -lXft) | |||
| set(FLTK_XFT_FOUND TRUE) | |||
| else() | |||
| set(FLTK_XFT_FOUND FALSE) | |||
| endif(OPTION_USE_XFT) | |||
| ####################################################################### | |||
| # final setup and config | |||
| ####################################################################### | |||
| # Set the fluid executable path | |||
| if(CMAKE_CROSSCOMPILING) | |||
| find_file(FLUID_PATH | |||
| NAMES fluid fluid.exe | |||
| PATHS ENV PATH | |||
| NO_CMAKE_FIND_ROOT_PATH | |||
| ) | |||
| add_executable(fluid IMPORTED) | |||
| set(FLTK_FLUID_EXECUTABLE ${FLUID_PATH}) | |||
| set(FLTK_FLUID_PATH ${FLUID_PATH}) | |||
| set_target_properties(fluid | |||
| PROPERTIES IMPORTED_LOCATION ${FLUID_PATH} | |||
| ) | |||
| else() | |||
| add_subdirectory(fluid) | |||
| set(FLTK_FLUID_EXECUTABLE ntk-fluid) | |||
| set(FLTK_FLUID_PATH ${PREFIX_BIN}/ntk-fluid) | |||
| endif(CMAKE_CROSSCOMPILING) | |||
| add_subdirectory(src) | |||
| # generate FLTKConfig.cmake | |||
| string(REPLACE ";" " " EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS}") | |||
| configure_file( | |||
| ${FLTK_SOURCE_DIR}/CMake/FLTKConfig.cmake.in | |||
| ${EXECUTABLE_OUTPUT_PATH}/FLTKConfig.cmake | |||
| @ONLY | |||
| ) | |||
| # generate UseFLTK.cmake | |||
| configure_file( | |||
| ${FLTK_SOURCE_DIR}/CMake/UseFLTK.cmake.in | |||
| ${EXECUTABLE_OUTPUT_PATH}/UseFLTK.cmake | |||
| @ONLY | |||
| ) | |||
| # generate config.h | |||
| configure_file( | |||
| "${FLTK_SOURCE_DIR}/configh.cmake.in" | |||
| "${FLTK_BINARY_DIR}/config.h" | |||
| @ONLY | |||
| ) | |||
| # generate fltk-config | |||
| get_filename_component(CC ${CMAKE_C_COMPILER} NAME) | |||
| get_filename_component(CXX ${CMAKE_CXX_COMPILER} NAME) | |||
| string(REPLACE ";" " " C_FLAGS "${FLTK_CFLAGS}") | |||
| if(X11_Xext_FOUND) | |||
| list(APPEND FLTK_LDLIBS -lXext) | |||
| endif(X11_Xext_FOUND) | |||
| string(REPLACE ";" " " LD_LIBS "${FLTK_LDLIBS}") | |||
| configure_file( | |||
| "${FLTK_SOURCE_DIR}/fltk-config.cmake.in" | |||
| "${FLTK_BINARY_DIR}/fltk-config" | |||
| @ONLY | |||
| ) | |||
| if(UNIX) | |||
| execute_process(COMMAND chmod 755 fltk-config | |||
| WORKING_DIRECTORY "${FLTK_BINARY_DIR}" | |||
| ) | |||
| endif(UNIX) | |||
| if(OPTION_CREATE_LINKS) | |||
| configure_file( | |||
| "${FLTK_SOURCE_DIR}/CMake/install-symlinks.cmake.in" | |||
| "${FLTK_BINARY_DIR}/install-symlinks.cmake" | |||
| @ONLY | |||
| ) | |||
| endif(OPTION_CREATE_LINKS) | |||
| # generate uninstall target | |||
| configure_file( | |||
| "${CMAKE_CURRENT_SOURCE_DIR}/CMake/cmake_uninstall.cmake.in" | |||
| "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | |||
| @ONLY | |||
| ) | |||
| add_custom_target(uninstall | |||
| "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" | |||
| ) | |||
| ####################################################################### | |||
| # build examples - these have to be after fluid is built/imported | |||
| ####################################################################### | |||
| if(OPTION_BUILD_EXAMPLES) | |||
| add_subdirectory(test) | |||
| endif(OPTION_BUILD_EXAMPLES) | |||
| ####################################################################### | |||
| # installation | |||
| ####################################################################### | |||
| install(DIRECTORY ${FLTK_SOURCE_DIR}/FL | |||
| DESTINATION ${PREFIX_INCLUDE} USE_SOURCE_PERMISSIONS | |||
| PATTERN ".svn" EXCLUDE | |||
| ) | |||
| if(OPTION_CREATE_LINKS) | |||
| install(SCRIPT ${FLTK_BINARY_DIR}/install-symlinks.cmake) | |||
| endif(OPTION_CREATE_LINKS) | |||
| install(PROGRAMS ${FLTK_BINARY_DIR}/fltk-config | |||
| DESTINATION ${PREFIX_BIN} | |||
| OPTIONAL | |||
| ) | |||
| install(EXPORT fltk-install | |||
| DESTINATION ${PREFIX_CONFIG} | |||
| FILE FLTKLibraries.cmake | |||
| ) | |||
| install(FILES ${EXECUTABLE_OUTPUT_PATH}/FLTKConfig.cmake | |||
| DESTINATION ${PREFIX_CONFIG} | |||
| ) | |||
| install(FILES ${EXECUTABLE_OUTPUT_PATH}/UseFLTK.cmake | |||
| DESTINATION ${PREFIX_CONFIG} | |||
| ) | |||
| if(CMAKE_HOST_UNIX) | |||
| macro(INSTALL_MAN FILE LEVEL) | |||
| install(FILES | |||
| ${FLTK_SOURCE_DIR}/documentation/src/${FILE}.man | |||
| DESTINATION ${PREFIX_MAN}/man${LEVEL} | |||
| RENAME ${FILE}.${LEVEL} | |||
| ) | |||
| endmacro(INSTALL_MAN FILE LEVEL) | |||
| INSTALL_MAN(fluid 1) | |||
| INSTALL_MAN(fltk-config 1) | |||
| INSTALL_MAN(fltk 3) | |||
| INSTALL_MAN(blocks 6) | |||
| INSTALL_MAN(checkers 6) | |||
| INSTALL_MAN(sudoku 6) | |||
| endif(CMAKE_HOST_UNIX) | |||
| @@ -1,38 +0,0 @@ | |||
| # Dashboard is opened for submissions for a 24 hour period starting at | |||
| # the specified NIGHLY_START_TIME. Time is specified in 24 hour format. | |||
| SET (NIGHTLY_START_TIME "21:00:00 EDT") | |||
| # Dart server to submit results (used by client) | |||
| SET (DROP_METHOD "http") | |||
| SET (DROP_SITE "public.kitware.com") | |||
| SET (DROP_LOCATION "/cgi-bin/HTTPUploadDartFile.cgi") | |||
| SET (TRIGGER_SITE "http://${DROP_SITE}/cgi-bin/Submit-Fltk-TestingResults.pl") | |||
| # Project Home Page | |||
| SET (PROJECT_URL "http://www.fltk.org") | |||
| # Dart server configuration | |||
| SET (ROLLUP_URL "http://${DROP_SITE}/cgi-bin/fltk-rollup-dashboard.sh") | |||
| SET (CVS_WEB_URL "http://cvs.sourceforge.net/viewcvs.py/fltk/fltk/") | |||
| SET (CVS_WEB_CVSROOT "fltk") | |||
| SET (USE_GNATS "On") | |||
| SET (GNATS_WEB_URL "http://www.fltk.org/str.php") | |||
| # Continuous email delivery variables | |||
| SET (CONTINUOUS_FROM "fltk-dashboard@public.kitware.com") | |||
| SET (SMTP_MAILHOST "public.kitware.com") | |||
| SET (CONTINUOUS_MONITOR_LIST "fltk-dashboard@public.kitware.com") | |||
| SET (CONTINUOUS_BASE_URL "http://public.kitware.com/Fltk/Testing") | |||
| SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_TEST_FAILURES ON) | |||
| SET (DELIVER_BROKEN_BUILD_EMAIL "Continuous Nightly") | |||
| SET (EMAIL_FROM "fltk-dashboard@public.kitware.com") | |||
| SET (DARTBOARD_BASE_URL "http://public.kitware.com/Fltk/Testing") | |||
| SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_CONFIGURE_FAILURES 1) | |||
| SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_BUILD_ERRORS 1) | |||
| SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_BUILD_WARNINGS 1) | |||
| SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_TEST_NOT_RUNS 1) | |||
| SET (DELIVER_BROKEN_BUILD_EMAIL_WITH_TEST_FAILURES 1) | |||
| @@ -32,9 +32,7 @@ | |||
| #ifndef Fl_H | |||
| # define Fl_H | |||
| #ifdef FLTK_HAVE_CAIRO | |||
| # include <FL/Fl_Cairo.H> | |||
| #endif | |||
| # include "fl_utf8.h" | |||
| # include "Enumerations.H" | |||
| @@ -1035,7 +1033,6 @@ public: | |||
| static void clear_widget_pointer(Fl_Widget const *w); | |||
| /** @} */ | |||
| #ifdef FLTK_HAVE_CAIRO | |||
| /** \defgroup group_cairo Cairo support functions and classes | |||
| @{ | |||
| */ | |||
| @@ -1071,8 +1068,6 @@ private: | |||
| public: | |||
| /** @} */ | |||
| #endif // FLTK_HAVE_CAIRO | |||
| }; | |||
| /** | |||
| @@ -31,21 +31,19 @@ | |||
| #ifndef FL_CAIRO_H | |||
| # define FL_CAIRO_H | |||
| # ifdef FLTK_HAVE_CAIRO | |||
| // Cairo is currently supported for the following platforms: | |||
| // Win32, Apple Quartz, X11 | |||
| # include <FL/Fl_Export.H> | |||
| # if defined(USE_X11) // X11 | |||
| # include <cairo/cairo-xlib.h> | |||
| # elif defined(WIN32) | |||
| # if defined(WIN32) | |||
| # include <cairo/cairo-win32.h> | |||
| # elif defined(__APPLE_QUARTZ__) | |||
| # include <cairo/cairo-quartz.h> | |||
| # else | |||
| # error Cairo is not supported on that platform. | |||
| // X11 | |||
| # include <cairo/cairo-xlib.h> | |||
| # endif | |||
| FL_EXPORT extern cairo_surface_t *fl_cairo_surface; | |||
| @@ -53,9 +51,6 @@ FL_EXPORT extern cairo_t *fl_cairo_context; | |||
| cairo_surface_t * cairo_create_surface(void * gc, int W, int H); | |||
| # endif // FLTK_HAVE_CAIRO | |||
| #endif // FL_CAIRO_H | |||
| // | |||
| @@ -1,90 +0,0 @@ | |||
| // | |||
| // "$Id: Fl_Cairo_Window.H 8198 2011-01-06 10:24:58Z manolo $" | |||
| // | |||
| // Main header file for the Fast Light Tool Kit (FLTK). | |||
| // | |||
| // Copyright 1998-2010 by Bill Spitzak and others. | |||
| // | |||
| // This library is free software; you can redistribute it and/or | |||
| // modify it under the terms of the GNU Library General Public | |||
| // License as published by the Free Software Foundation; either | |||
| // version 2 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 | |||
| // Library General Public License for more details. | |||
| // | |||
| // You should have received a copy of the GNU Library General Public | |||
| // License along with this library; if not, write to the Free Software | |||
| // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| // USA. | |||
| // | |||
| // Please report all bugs and problems on the following page: | |||
| // | |||
| // http://www.fltk.org/str.php | |||
| // | |||
| /* \file | |||
| Fl_Cairo_Window Handling transparently a fltk window incorporte a cairo draw callback. | |||
| */ | |||
| #ifndef FL_CAIRO_WINDOW_H | |||
| # define FL_CAIRO_WINDOW_H | |||
| # ifdef FLTK_HAVE_CAIRO | |||
| // Cairo is currently supported for the following platforms: | |||
| // Win32, Apple Quartz, X11 | |||
| # include <FL/Fl.H> | |||
| # include <FL/Fl_Double_Window.H> | |||
| /** | |||
| \addtogroup group_cairo | |||
| @{ | |||
| */ | |||
| /** | |||
| This defines a pre-configured cairo fltk window. | |||
| This class overloads the virtual draw() method for you, | |||
| so that the only thing you have to do is to provide your cairo code. | |||
| All cairo context handling is achieved transparently. | |||
| \note You can alternatively define your custom cairo fltk window, | |||
| and thus at least override the draw() method to provide custom cairo | |||
| support. In this case you will probably use Fl::cairo_make_current(Fl_Window*) | |||
| to attach a context to your window. You should do it only when your window is | |||
| the current window. \see Fl_Window::current() | |||
| */ | |||
| class FL_EXPORT Fl_Cairo_Window : public Fl_Double_Window { | |||
| public: | |||
| Fl_Cairo_Window(int w, int h) : Fl_Double_Window(w,h),draw_cb_(0) {} | |||
| protected: | |||
| /** Overloaded to provide cairo callback support */ | |||
| void draw() { | |||
| Fl_Double_Window::draw(); | |||
| // manual method ? if yes explicitly get a cairo_context here | |||
| if (draw_cb_) draw_cb_(this, Fl::cairo_cc()); | |||
| } | |||
| public: | |||
| /** This defines the cairo draw callback prototype that you must further */ | |||
| typedef void (*cairo_draw_cb) (Fl_Cairo_Window* self, cairo_t* def); | |||
| /** | |||
| You must provide a draw callback which will implement your cairo rendering. | |||
| This method will permit you to set your cairo callback to \p cb. | |||
| */ | |||
| void set_draw_cb(cairo_draw_cb cb){draw_cb_=cb;} | |||
| private: | |||
| cairo_draw_cb draw_cb_; | |||
| }; | |||
| /** @} */ | |||
| # endif // FLTK_HAVE_CAIRO | |||
| #endif // FL_CAIRO_WINDOW_H | |||
| // | |||
| // End of "$Id: Fl_Cairo_Window.H 8198 2011-01-06 10:24:58Z manolo $" . | |||
| // | |||
| @@ -40,9 +40,7 @@ | |||
| #include <FL/Fl_Pixmap.H> | |||
| #include <FL/Fl_RGB_Image.H> | |||
| #if FLTK_USE_CAIRO | |||
| #include <FL/Fl_Cairo.H> | |||
| #endif | |||
| class Fl_Graphics_Driver; | |||
| class Fl_Font_Descriptor; | |||
| @@ -501,8 +499,6 @@ public: | |||
| int descent(); | |||
| }; | |||
| #if FLTK_USE_CAIRO | |||
| class Fl_Cairo_Graphics_Driver : public Fl_Xlib_Graphics_Driver { | |||
| static cairo_matrix_t m; | |||
| @@ -589,7 +585,6 @@ public: | |||
| }; | |||
| #endif | |||
| #endif | |||
| /** | |||
| \brief A surface that's susceptible to receive graphical output. | |||
| @@ -176,9 +176,7 @@ class FL_EXPORT Fl_RGB_Image : public Fl_Image { | |||
| friend class Fl_Quartz_Graphics_Driver; | |||
| friend class Fl_GDI_Graphics_Driver; | |||
| friend class Fl_Xlib_Graphics_Driver; | |||
| #if FLTK_HAVE_CAIRO | |||
| friend class Fl_Cairo_Graphics_Driver; | |||
| #endif | |||
| public: | |||
| const uchar *array; | |||
| @@ -1,63 +0,0 @@ | |||
| # | |||
| # "$Id: Makefile.in 7913 2010-11-29 18:18:27Z greg.ercolano $" | |||
| # | |||
| # Header makefile for the Fast Light Tool Kit (FLTK). | |||
| # | |||
| # Copyright 1998-2010 by Bill Spitzak and others. | |||
| # | |||
| # This library is free software; you can redistribute it and/or | |||
| # modify it under the terms of the GNU Library General Public | |||
| # License as published by the Free Software Foundation; either | |||
| # version 2 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 | |||
| # Library General Public License for more details. | |||
| # | |||
| # You should have received a copy of the GNU Library General Public | |||
| # License along with this library; if not, write to the Free Software | |||
| # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| # USA. | |||
| # | |||
| # Please report all bugs and problems on the following page: | |||
| # | |||
| # http://www.fltk.org/str.php | |||
| # | |||
| include ../makeinclude | |||
| all: | |||
| clean: | |||
| depend: | |||
| install: | |||
| echo "Installing include files in $(DESTDIR)$(includedir)..." | |||
| $(RMDIR) $(DESTDIR)$(includedir)/ntk/FL | |||
| $(INSTALL_DIR) $(DESTDIR)$(includedir)/ntk/FL | |||
| for file in *.[hH]; do \ | |||
| $(INSTALL_DATA) $$file $(DESTDIR)$(includedir)/ntk/FL; \ | |||
| done | |||
| @HLINKS@ cd $(DESTDIR)$(includedir)/ntk/FL;\ | |||
| @HLINKS@ for file in *.H; do\ | |||
| @HLINKS@ $(RM) "`basename $$file H`h";\ | |||
| @HLINKS@ $(LN) $$file "`basename $$file H`h";\ | |||
| @HLINKS@ done | |||
| @HLINKS@ $(RM) $(DESTDIR)$(includedir)/ntk/FL/fl_file_chooser.H | |||
| @HLINKS@ $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/ntk/FL/fl_file_chooser.H | |||
| @HLINKS@ $(RM) $(DESTDIR)$(includedir)/ntk/FL/fl_file_chooser.h | |||
| @HLINKS@ $(LN) Fl_File_Chooser.H $(DESTDIR)$(includedir)/ntk/FL/fl_file_chooser.h | |||
| @HLINKS@ $(RM) $(DESTDIR)$(includedir)/ntk/Fl | |||
| @HLINKS@ $(LN) FL $(DESTDIR)$(includedir)/ntk/Fl | |||
| uninstall: | |||
| echo "Uninstalling include files..." | |||
| $(RMDIR) $(DESTDIR)$(includedir)/ntk/FL | |||
| @HLINKS@ $(RM) $(DESTDIR)$(includedir)/ntk/Fl | |||
| # | |||
| # End of "$Id: Makefile.in 7913 2010-11-29 18:18:27Z greg.ercolano $". | |||
| # | |||
| @@ -200,9 +200,7 @@ enum { | |||
| FL_JOIN_BEVEL = 0x3000 ///< join style: line join is tidied | |||
| }; | |||
| #if FLTK_HAVE_CAIRO | |||
| FL_EXPORT Fl_Color fl_color_add_alpha ( Fl_Color c, uchar alpha ); | |||
| #endif | |||
| // rectangles tweaked to exactly fill the pixel rectangle: | |||
| @@ -64,20 +64,12 @@ | |||
| # include "Fl_Window.H" | |||
| # include "Xutf8.h" | |||
| // Mirror X definition of Region to Fl_Region, for portability... | |||
| #if FLTK_USE_CAIRO | |||
| typedef cairo_region_t * Fl_Region; | |||
| #else | |||
| typedef Region Fl_Region; | |||
| #endif | |||
| FL_EXPORT void fl_open_display(); | |||
| FL_EXPORT void fl_open_display(Display*); | |||
| FL_EXPORT void fl_close_display(); | |||
| FL_EXPORT void fl_push_use_cairo( bool v ); | |||
| FL_EXPORT void fl_pop_use_cairo( void ); | |||
| // constant info about the X server connection: | |||
| extern FL_EXPORT Display *fl_display; | |||
| extern FL_EXPORT int fl_screen; | |||
| @@ -163,12 +155,10 @@ class FL_EXPORT Fl_X { | |||
| public: | |||
| Window xid; | |||
| Window other_xid; /* for double buffering */ | |||
| #if FLTK_HAVE_CAIRO | |||
| cairo_t *cc; | |||
| cairo_surface_t *cs; | |||
| cairo_t *other_cc; /* for double buffering */ | |||
| cairo_surface_t *other_cs; /* for double buffering */ | |||
| #endif | |||
| Fl_Window *w; | |||
| Fl_Region region; | |||
| Fl_X *next; | |||
| @@ -1,139 +0,0 @@ | |||
| # | |||
| # "$Id: Makefile 8427 2011-02-15 15:29:03Z mike $" | |||
| # | |||
| # Top-level makefile for the Fast Light Tool Kit (FLTK). | |||
| # | |||
| # Copyright 1998-2010 by Bill Spitzak and others. | |||
| # | |||
| # This library is free software; you can redistribute it and/or | |||
| # modify it under the terms of the GNU Library General Public | |||
| # License as published by the Free Software Foundation; either | |||
| # version 2 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 | |||
| # Library General Public License for more details. | |||
| # | |||
| # You should have received a copy of the GNU Library General Public | |||
| # License along with this library; if not, write to the Free Software | |||
| # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| # USA. | |||
| # | |||
| # Please report all bugs and problems on the following page: | |||
| # | |||
| # http://www.ntk.org/str.php | |||
| # | |||
| include makeinclude | |||
| DIRS = $(IMAGEDIRS) src fluid documentation | |||
| all: makeinclude ntk-config | |||
| for dir in $(DIRS); do\ | |||
| echo "=== making $$dir ===";\ | |||
| (cd $$dir; $(MAKE) $(MFLAGS)) || exit 1;\ | |||
| done | |||
| install: makeinclude | |||
| -mkdir -p $(DESTDIR)$(bindir) | |||
| $(RM) $(DESTDIR)$(bindir)/ntk-config | |||
| $(INSTALL_SCRIPT) ntk-config $(DESTDIR)$(bindir) | |||
| for dir in FL $(DIRS); do\ | |||
| echo "=== installing $$dir ===";\ | |||
| (cd $$dir; $(MAKE) $(MFLAGS) install) || exit 1;\ | |||
| done | |||
| install-desktop: makeinclude | |||
| cd documentation; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP) | |||
| cd fluid; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP) | |||
| cd test; $(MAKE) $(MFLAGS) $(INSTALL_DESKTOP) | |||
| uninstall: makeinclude | |||
| $(RM) $(DESTDIR)$(bindir)/ntk-config | |||
| for dir in FL $(DIRS); do\ | |||
| echo "=== uninstalling $$dir ===";\ | |||
| (cd $$dir; $(MAKE) $(MFLAGS) uninstall) || exit 1;\ | |||
| done | |||
| uninstall-desktop: makeinclude | |||
| cd documentation; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP) | |||
| cd fluid; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP) | |||
| cd test; $(MAKE) $(MFLAGS) $(UNINSTALL_DESKTOP) | |||
| depend: makeinclude | |||
| for dir in $(DIRS); do\ | |||
| echo "=== making dependencies in $$dir ===";\ | |||
| (cd $$dir; $(MAKE) $(MFLAGS) depend) || exit 1;\ | |||
| done | |||
| clean: | |||
| -$(RM) core *.o | |||
| for dir in $(DIRS); do\ | |||
| echo "=== cleaning $$dir ===";\ | |||
| (cd $$dir; $(MAKE) $(MFLAGS) clean) || exit 1;\ | |||
| done | |||
| distclean: clean | |||
| $(RM) config.* | |||
| $(RM) ntk-config ntk.list makeinclude | |||
| $(RM) ntk.spec | |||
| $(RM) FL/Makefile | |||
| $(RM) documentation/*.$(CAT1EXT) | |||
| $(RM) documentation/*.$(CAT3EXT) | |||
| $(RM) documentation/*.$(CAT6EXT) | |||
| $(RM) documentation/ntk.ps | |||
| $(RM) -r documentation/ntk.d | |||
| for file in test/*.fl; do\ | |||
| $(RM) test/`basename $$file .fl`.cxx; \ | |||
| $(RM) test/`basename $$file .fl`.h; \ | |||
| done | |||
| ntk-config: configure configh.in ntk-config.in | |||
| if test -f config.status; then \ | |||
| ./config.status --recheck; \ | |||
| ./config.status; \ | |||
| else \ | |||
| ./configure; \ | |||
| fi | |||
| touch config.h | |||
| chmod +x ntk-config | |||
| makeinclude: configure configh.in makeinclude.in | |||
| if test -f config.status; then \ | |||
| ./config.status --recheck; \ | |||
| ./config.status; \ | |||
| else \ | |||
| ./configure; \ | |||
| fi | |||
| touch config.h | |||
| chmod +x ntk-config | |||
| configure: configure.in | |||
| autoconf | |||
| portable-dist: | |||
| epm -v -s ntk.xpm ntk | |||
| native-dist: | |||
| epm -v -f native ntk | |||
| etags: | |||
| etags FL/*.H FL/*.h src/*.cxx src/*.c src/*.h src/xutf8/*.h src/xutf8/*.c cairo/*.cxx fluid/*.h fluid/*.cxx test/*.h test/*.cxx | |||
| # | |||
| # Run the clang.llvm.org static code analysis tool on the C sources. | |||
| # (at least checker-231 is required for scan-build to work this way) | |||
| # | |||
| .PHONY: clang clang-changes | |||
| clang: | |||
| $(RM) -r clang | |||
| scan-build -V -k -o `pwd`/clang $(MAKE) $(MFLAGS) clean all | |||
| clang-changes: | |||
| scan-build -V -k -o `pwd`/clang $(MAKE) $(MFLAGS) all | |||
| # | |||
| # End of "$Id: Makefile 8427 2011-02-15 15:29:03Z mike $". | |||
| # | |||
| @@ -1,287 +0,0 @@ | |||
| README.CMake.txt - 2010-12-20 - Building and using FLTK with CMake | |||
| ------------------------------------------------------------------ | |||
| CONTENTS | |||
| ========== | |||
| 1 INTRODUCTION TO CMAKE | |||
| 2 USING CMAKE TO BUILD FLTK | |||
| 2.1 Prerequisites | |||
| 2.2 Options | |||
| 2.3 Building under Linux with Unix Makefiles | |||
| 2.4 Crosscompiling | |||
| 3 USING CMAKE WITH FLTK | |||
| 3.1 Library names | |||
| 3.2 Using Fluid files | |||
| 4 DOCUMENT HISTORY | |||
| INTRODUCTION TO CMAKE | |||
| ======================= | |||
| CMake was designed to let you create build files for a project once and | |||
| then compile the project on multiple platforms. | |||
| Using it on any platform consists of the same steps. Create the | |||
| CMakeLists.txt build file(s). Run one of the CMake executables, picking | |||
| your source directory, build directory, and build target. The "cmake" | |||
| executable is a one-step process with everything specified on the command | |||
| line. The others let you select options interactively, then configure | |||
| and generate your platform-specific target. You then run the resulting | |||
| Makefile / project file / solution file as you normally would. | |||
| CMake can be run in up to three ways, depending on your platform. "cmake" | |||
| is the basic command line tool. "ccmake" is the curses based interactive | |||
| tool. "cmake-gui" is the gui-based interactive tool. Each of these will | |||
| take command line options in the form of -DOPTION=VALUE. ccmake and | |||
| cmake-gui will also let you change options interactively. | |||
| CMake not only supports, but works best with out-of-tree builds. This means | |||
| that your build directory is not the same as your source directory or with a | |||
| complex project, not the same as your source root directory. Note that the | |||
| build directory is where, in this case, FLTK will be built, not its final | |||
| installation point. If you want to build for multiple targets, such as | |||
| VC++ and MinGW on Windows, or do some cross-compiling you must use out-of-tree | |||
| builds exclusively. In-tree builds will gum up the works by putting a | |||
| CMakeCache.txt file in the source root. | |||
| More information on CMake can be found on its web site http://www.cmake.org. | |||
| USING CMAKE TO BUILD FLTK | |||
| =========================== | |||
| PREREQUISITES | |||
| --------------- | |||
| The prerequisites for building FLTK with CMake are staightforward: | |||
| CMake 2.6 or later and a recent FLTK 1.3 snapshot. Installation of | |||
| CMake is covered on its web site. | |||
| This howto will cover building FLTK with the default options using cmake | |||
| under Linux with both the default Unix Makefiles and a MinGW cross compiling | |||
| toolchain. Other platforms are just as easy to use. | |||
| OPTIONS | |||
| --------- | |||
| All options have sensible defaults so you won't usually need to touch these. | |||
| There are only two CMake options that you may want to specify. | |||
| CMAKE_BUILD_TYPE | |||
| This specifies what kind of build this is i.e. Release, Debug... | |||
| Platform specific compile/link flags/options are automatically selected | |||
| by CMake depending on this value. | |||
| CMAKE_INSTALL_PREFIX | |||
| Where everything will go on install. Defaults are /usr/local for unix | |||
| and C:\Program Files\FLTK for Windows. | |||
| These are the FLTK specific options. Platform specific options are ignored | |||
| on other platforms. | |||
| OPTION_OPTIM | |||
| Extra optimization flags. | |||
| OPTION_ARCHFLAGS | |||
| Extra architecture flags. | |||
| The OPTION_PREFIX_* flags are for fine-tuning where everything goes | |||
| on the install. | |||
| OPTION_PREFIX_BIN | |||
| OPTION_PREFIX_LIB | |||
| OPTION_PREFIX_INCLUDE | |||
| OPTION_PREFIX_DATA | |||
| OPTION_PREFIX_DOC | |||
| OPTION_PREFIX_CONFIG | |||
| OPTION_PREFIX_MAN | |||
| OPTION_APPLE_X11 - default OFF | |||
| In case you want to use X11 on OSX. Not currently supported. | |||
| OPTION_USE_POLL - default OFF | |||
| Don't use this one either. | |||
| OPTION_BUILD_SHARED_LIBS - default OFF | |||
| Normally FLTK is built as static libraries which makes more portable | |||
| binaries. If you want to use shared libraries, this will build them too. | |||
| OPTION_BUILD_EXAMPLES - default ON | |||
| Builds the many fine example programs. | |||
| OPTION_CAIRO - default OFF | |||
| Enables libcairo support | |||
| OPTION_CAIROEXT - default OFF | |||
| Enables extended libcairo support | |||
| OPTION_USE_GL - default ON | |||
| Enables OpenGL support | |||
| OPTION_USE_THREADS - default ON | |||
| Enables multithreaded support | |||
| OPTION_LARGE_FILE - default ON | |||
| Enables large file (>2G) support | |||
| FLTK has built in jpeg zlib and png libraries. These let you use | |||
| system libraries instead, unless CMake can't find them. | |||
| OPTION_USE_SYSTEM_LIBJPEG - default ON | |||
| OPTION_USE_SYSTEM_ZLIB - default ON | |||
| OPTION_USE_SYSTEM_LIBPNG - default ON | |||
| X11 extended libraries. | |||
| OPTION_USE_XINERAMA - default ON | |||
| OPTION_USE_XFT - default ON | |||
| OPTION_USE_XDBE - default ON | |||
| BUILDING UNDER LINUX WITH UNIX MAKEFILES | |||
| ------------------------------------------ | |||
| After untaring the FLTK source, go to the root of the FLTK tree and type | |||
| the following. | |||
| mkdir build | |||
| cd build | |||
| cmake .. | |||
| make | |||
| sudo make install | |||
| This will build and install a default configuration FLTK. | |||
| CROSSCOMPILING | |||
| ---------------- | |||
| Once you have a crosscompiler going, to use CMAke to build FLTK you need | |||
| two more things. You need a toolchain file which tells CMake where your | |||
| build tools are. The CMake website is a good source of information on | |||
| this file. Here's mine for MinGW under Linux. | |||
| ---- | |||
| # the name of the target operating system | |||
| set(CMAKE_SYSTEM_NAME Windows) | |||
| # which tools to use | |||
| set(CMAKE_C_COMPILER /usr/bin/i486-mingw32-gcc) | |||
| set(CMAKE_CXX_COMPILER /usr/bin/i486-mingw32-g++) | |||
| # here is where the target environment located | |||
| set(CMAKE_FIND_ROOT_PATH /usr/i486-mingw32) | |||
| # adjust the default behaviour of the FIND_XXX() commands: | |||
| # search programs in the host environment | |||
| set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) | |||
| # search headers and libraries in the target environment, | |||
| set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) | |||
| set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) | |||
| set(CMAKE_INSTALL_PREFIX ${CMAKE_FIND_ROOT_PATH}/usr CACHE FILEPATH | |||
| "install path prefix") | |||
| ---- | |||
| Not too tough. The other thing you need is a native installation of FLTK | |||
| on your build platform. This is to supply the fluid executable which will | |||
| compile the *.fl into C++ source and header files. | |||
| So, again from the FLTK tree root. | |||
| mkdir mingw | |||
| cd mingw | |||
| cmake -DCMAKE_TOOLCHAIN_FILE=~/projects/toolchain/Toolchain-mingw32.cmake .. | |||
| make | |||
| sudo make install | |||
| This will create a default configuration FLTK suitable for mingw/msys and | |||
| install it in the /usr/i486-mingw32/usr tree. | |||
| USING CMAKE WITH FLTK | |||
| ======================= | |||
| This howto assumes that you have FLTK libraries which were built using | |||
| CMake, installed. Building them with CMake generates some CMake helper | |||
| files which are installed in standard locations, making FLTK easy to find | |||
| and use. | |||
| Here is a basic CMakeLists.txt file using FLTK. | |||
| ------ | |||
| cmake_minimum_required(VERSION 2.6) | |||
| project(hello) | |||
| find_package(FLTK REQUIRED NO_MODULE) | |||
| include(${FLTK_USE_FILE}) | |||
| add_executable(hello WIN32 hello.cxx) | |||
| target_link_libraries(hello fltk) | |||
| ------ | |||
| The find_package command tells CMake to find the package FLTK, REQUIRED | |||
| means that it is an error if it's not found. NO_MODULE tells it to search | |||
| only for the FLTKConfig file, not using the FindFLTK.cmake supplied with | |||
| CMake, which doesn't work with this version of FLTK. | |||
| Once the package is found we include the ${FLTK_USE_FILE} which adds the | |||
| FLTK include directories and library link information to its knowledge | |||
| base. After that your programs will be able to find FLTK headers and | |||
| when you link the fltk library, it automatically links the libraries | |||
| fltk depends on. | |||
| The WIN32 in the add_executable tells your Windows compiler that this is | |||
| a gui app. It is ignored on other platforms. | |||
| LIBRARY NAMES | |||
| --------------- | |||
| When you use the target_link_libraries command, CMake uses it's own | |||
| internal names for libraries. The fltk library names are: | |||
| fltk fltk_forms fltk_images fltk_gl | |||
| and for the shared libraries (if built): | |||
| fltk_SHARED fltk_forms_SHARED fltk_images_SHARED fltk_gl_SHARED | |||
| The built-in libraries (if built): | |||
| fltk_jpeg fltk_png fltk_z | |||
| USING FLUID FILES | |||
| ------------------- | |||
| CMake has a command named fltk_wrap_ui which helps deal with fluid *.fl | |||
| files. An example of its use is in test/CMakeLists.txt. Here is a short | |||
| summary on its use. | |||
| Set a variable to list your C++ files, say CPPFILES. | |||
| Set another variable to list your *.fl files, say FLFILES. | |||
| Say your executable will be called exec. | |||
| Then this is what you do... | |||
| fltk_wrap_ui(exec ${FLFILES}) | |||
| add_executable(exec WIN32 ${CPPFILES} ${exec_FLTK_UI_SRCS}) | |||
| fltk_wrap_ui calls fluid and generates the required C++ files from the *.fl | |||
| files. It sets the variable, in this case exec_FLTK_UI_SRCS, to the | |||
| list of generated files for inclusion in the add_executable command. | |||
| The variable FLTK_FLUID_EXECUTABLE which is needed by fltk_wrap_ui is set | |||
| when find_package(FLTK REQUIRED NO_MODULE) succeeds. | |||
| DOCUMENT HISTORY | |||
| ================== | |||
| Dec 20 2010 - matt: merged and restructures | |||
| @@ -1,323 +0,0 @@ | |||
| /* | |||
| * "$Id: configh.cmake.in 8198 2011-01-06 10:24:58Z manolo $" | |||
| * | |||
| * Configuration file for the Fast Light Tool Kit (FLTK). | |||
| * @configure_input@ | |||
| * | |||
| * Copyright 1998-2010 by Bill Spitzak and others. | |||
| * | |||
| * This library is free software; you can redistribute it and/or | |||
| * modify it under the terms of the GNU Library General Public | |||
| * License as published by the Free Software Foundation; either | |||
| * version 2 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 | |||
| * Library General Public License for more details. | |||
| * | |||
| * You should have received a copy of the GNU Library General Public | |||
| * License along with this library; if not, write to the Free Software | |||
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| * USA. | |||
| * | |||
| * Please report all bugs and problems on the following page: | |||
| * | |||
| * http://www.fltk.org/str.php | |||
| */ | |||
| /* | |||
| * Where to find files... | |||
| */ | |||
| #define FLTK_DATADIR "@PREFIX_DATA@" | |||
| #define FLTK_DOCDIR "@PREFIX_DOC@" | |||
| /* | |||
| * BORDER_WIDTH: | |||
| * | |||
| * Thickness of FL_UP_BOX and FL_DOWN_BOX. Current 1,2, and 3 are | |||
| * supported. | |||
| * | |||
| * 3 is the historic FLTK look. | |||
| * 2 is the default and looks like Microsoft Windows, KDE, and Qt. | |||
| * 1 is a plausible future evolution... | |||
| * | |||
| * Note that this may be simulated at runtime by redefining the boxtypes | |||
| * using Fl::set_boxtype(). | |||
| */ | |||
| #define BORDER_WIDTH 2 | |||
| /* | |||
| * HAVE_GL: | |||
| * | |||
| * Do you have OpenGL? Set this to 0 if you don't have or plan to use | |||
| * OpenGL, and FLTK will be smaller. | |||
| */ | |||
| #cmakedefine01 HAVE_GL | |||
| /* | |||
| * HAVE_GL_GLU_H: | |||
| * | |||
| * Do you have the OpenGL Utility Library header file? | |||
| * (many broken Mesa RPMs do not...) | |||
| */ | |||
| #cmakedefine01 HAVE_GL_GLU_H | |||
| /* | |||
| * HAVE_GLXGETPROCADDRESSARB: | |||
| * | |||
| * Do you have the OpenGL glXGetProcAddressARB() function? | |||
| */ | |||
| #cmakedefine HAVE_GLXGETPROCADDRESSARB %HAVE_GLXGETPROCADDRESSARB% | |||
| /* | |||
| * USE_COLORMAP: | |||
| * | |||
| * Setting this to zero will save a good deal of code (especially for | |||
| * fl_draw_image), but FLTK will only work on TrueColor visuals. | |||
| */ | |||
| #define USE_COLORMAP 1 | |||
| /* | |||
| * HAVE_XINERAMA | |||
| * | |||
| * Do we have the Xinerama library to support multi-head displays? | |||
| */ | |||
| #cmakedefine01 HAVE_XINERAMA | |||
| /* | |||
| * USE_XFT | |||
| * | |||
| * Use the new Xft library to draw anti-aliased text. | |||
| */ | |||
| #cmakedefine01 USE_XFT | |||
| /* | |||
| * HAVE_XDBE: | |||
| * | |||
| * Do we have the X double-buffer extension? | |||
| */ | |||
| #cmakedefine01 HAVE_XDBE | |||
| /* | |||
| * USE_XDBE: | |||
| * | |||
| * Actually try to use the double-buffer extension? | |||
| */ | |||
| #define USE_XDBE HAVE_XDBE | |||
| /* | |||
| * __APPLE_QUARTZ__: | |||
| * | |||
| * If __APPLE_QUARTZ__ is defined, FLTK will be | |||
| * compiled using Quartz. This flag has no meaning on | |||
| * other operating systems than Mac OS X. | |||
| */ | |||
| #cmakedefine __APPLE_QUARTZ__ @__APPLE_QUARTZ__@ | |||
| /* | |||
| * USE_X11 | |||
| * | |||
| * Should we use X11 for the current platform | |||
| * | |||
| */ | |||
| #cmakedefine USE_X11 @USE_X11@ | |||
| /* | |||
| * HAVE_OVERLAY: | |||
| * | |||
| * Use the X overlay extension? FLTK will try to use an overlay | |||
| * visual for Fl_Overlay_Window, the Gl_Window overlay, and for the | |||
| * menus. Setting this to zero will remove a substantial amount of | |||
| * code from FLTK. Overlays have only been tested on SGI servers! | |||
| */ | |||
| #define HAVE_OVERLAY 0 | |||
| /* | |||
| * HAVE_GL_OVERLAY: | |||
| * | |||
| * It is possible your GL has an overlay even if X does not. If so, | |||
| * set this to 1. | |||
| */ | |||
| #define HAVE_GL_OVERLAY HAVE_OVERLAY | |||
| /* | |||
| * WORDS_BIGENDIAN: | |||
| * | |||
| * Byte order of your machine: 1 = big-endian, 0 = little-endian. | |||
| */ | |||
| #define WORDS_BIGENDIAN @WORDS_BIGENDIAN@ | |||
| /* | |||
| * U16, U32, U64: | |||
| * | |||
| * Types used by fl_draw_image. One of U32 or U64 must be defined. | |||
| * U16 is optional but FLTK will work better with it! | |||
| */ | |||
| #cmakedefine U16 @U16@ | |||
| #cmakedefine U32 @U32@ | |||
| #cmakedefine U64 @U64@ | |||
| /* | |||
| * HAVE_DIRENT_H, HAVE_SYS_NDIR_H, HAVE_SYS_DIR_H, HAVE_NDIR_H, | |||
| * HAVE_SCANDIR, HAVE_SCANDIR_POSIX: | |||
| * | |||
| * Where is <dirent.h> (used only by fl_file_chooser and scandir). | |||
| */ | |||
| #cmakedefine HAVE_DIRENT_H @HAVE_DIRENT_H@ | |||
| #cmakedefine HAVE_SYS_NDIR_H @HAVE_SYS_NDIR_H@ | |||
| #cmakedefine HAVE_SYS_DIR_H @HAVE_SYS_DIR_H@ | |||
| #cmakedefine HAVE_NDIR_H @HAVE_NDIR_H@ | |||
| #cmakedefine HAVE_SCANDIR @HAVE_SCANDIR@ | |||
| #cmakedefine HAVE_SCANDIR_POSIX @HAVE_SCANDIR_POSIX@ | |||
| /* | |||
| * Possibly missing sprintf-style functions: | |||
| */ | |||
| #cmakedefine HAVE_VSNPRINTF @HAVE_VSNPRINTF@ | |||
| #cmakedefine HAVE_SNPRINTF @HAVE_SNPRINTF@ | |||
| /* | |||
| * String functions and headers... | |||
| */ | |||
| #cmakedefine HAVE_STRINGS_H @HAVE_STRINGS_H@ | |||
| #cmakedefine HAVE_STRCASECMP @HAVE_STRCASECMP@ | |||
| #cmakedefine HAVE_STRLCAT @HAVE_STRLCAT@ | |||
| #cmakedefine HAVE_STRLCPY @HAVE_STRLCPY@ | |||
| /* | |||
| * Do we have POSIX locale support? | |||
| */ | |||
| #cmakedefine HAVE_LOCALE_H @HAVE_LOCALE_H@ | |||
| #cmakedefine HAVE_LOCALECONV @HAVE_LOCALECONV@ | |||
| /* | |||
| * HAVE_SYS_SELECT_H: | |||
| * | |||
| * Whether or not select() call has its own header file. | |||
| */ | |||
| #cmakedefine01 HAVE_SYS_SELECT_H | |||
| /* | |||
| * HAVE_SYS_STDTYPES_H: | |||
| * | |||
| * Whether or not we have the <sys/stdtypes.h> header file. | |||
| */ | |||
| #cmakedefine HAVE_SYS_STDTYPES_H @HAVE_SYS_STDTYPES_H@ | |||
| /* | |||
| * USE_POLL: | |||
| * | |||
| * Use the poll() call provided on Linux and Irix instead of select() | |||
| */ | |||
| #cmakedefine01 USE_POLL | |||
| /* | |||
| * Do we have various image libraries? | |||
| */ | |||
| #cmakedefine HAVE_LIBPNG @HAVE_LIBPNG@ | |||
| #cmakedefine HAVE_LIBZ @HAVE_LIBZ@ | |||
| #cmakedefine HAVE_LIBJPEG @HAVE_LIBJPEG@ | |||
| /* | |||
| * FLTK_USE_CAIRO | |||
| * | |||
| * Do we have the cairo library available and want extended cairo use in fltk ? | |||
| * will implies to link cairo.lib in all fltk based apps. | |||
| */ | |||
| #cmakedefine FLTK_USE_CAIRO @FLTK_USE_CAIRO@ | |||
| /* | |||
| * FLTK_HAVE_CAIRO | |||
| * | |||
| * Do we have the cairo library available? | |||
| */ | |||
| #cmakedefine FLTK_HAVE_CAIRO @FLTK_HAVE_CAIRO@ | |||
| /* | |||
| * Which header file do we include for libpng? | |||
| */ | |||
| #cmakedefine HAVE_PNG_H @HAVE_PNG_H@ | |||
| #cmakedefine HAVE_LIBPNG_PNG_H @HAVE_LIBPNG_PNG_H@ | |||
| /* | |||
| * Do we have the png_xyz() functions? | |||
| */ | |||
| #cmakedefine HAVE_PNG_GET_VALID @HAVE_PNG_GET_VALID@ | |||
| #cmakedefine HAVE_PNG_SET_TRNS_TO_ALPHA @HAVE_PNG_SET_TRNS_TO_ALPHA@ | |||
| /* | |||
| * Do we have POSIX threading? | |||
| */ | |||
| #cmakedefine HAVE_PTHREAD @HAVE_PTHREAD@ | |||
| #cmakedefine01 HAVE_PTHREAD_H | |||
| /* | |||
| * Do we have the ALSA library? | |||
| */ | |||
| #cmakedefine HAVE_ALSA_ASOUNDLIB_H @HAVE_ALSA_ASOUNDLIB_H@ | |||
| /* | |||
| * Do we have the long long type? | |||
| */ | |||
| #cmakedefine HAVE_LONG_LONG @HAVE_LONG_LONG@ | |||
| #ifdef HAVE_LONG_LONG | |||
| # define FLTK_LLFMT "%lld" | |||
| # define FLTK_LLCAST (long long) | |||
| #else | |||
| # define FLTK_LLFMT "%ld" | |||
| # define FLTK_LLCAST (long) | |||
| #endif /* HAVE_LONG_LONG */ | |||
| /* | |||
| * Do we have the strtoll() function? | |||
| */ | |||
| #cmakedefine HAVE_STRTOLL @HAVE_STRTOLL@ | |||
| #ifndef HAVE_STRTOLL | |||
| # define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base)) | |||
| #endif /* !HAVE_STRTOLL */ | |||
| /* | |||
| * Do we have the dlsym() function and header? | |||
| */ | |||
| #cmakedefine HAVE_DLFCN_H @HAVE_DLFCN_H@ | |||
| #cmakedefine HAVE_DLSYM @HAVE_DLSYM@ | |||
| /* | |||
| * End of "$Id: configh.cmake.in 8198 2011-01-06 10:24:58Z manolo $". | |||
| */ | |||
| @@ -1,328 +0,0 @@ | |||
| /* | |||
| * "$Id: configh.in 8797 2011-06-09 16:21:40Z matt $" | |||
| * | |||
| * Configuration file for the Fast Light Tool Kit (FLTK). | |||
| * @configure_input@ | |||
| * | |||
| * Copyright 1998-2010 by Bill Spitzak and others. | |||
| * | |||
| * This library is free software; you can redistribute it and/or | |||
| * modify it under the terms of the GNU Library General Public | |||
| * License as published by the Free Software Foundation; either | |||
| * version 2 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 | |||
| * Library General Public License for more details. | |||
| * | |||
| * You should have received a copy of the GNU Library General Public | |||
| * License along with this library; if not, write to the Free Software | |||
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| * USA. | |||
| * | |||
| * Please report all bugs and problems on the following page: | |||
| * | |||
| * http://www.fltk.org/str.php | |||
| */ | |||
| /* | |||
| * Where to find files... | |||
| */ | |||
| #define FLTK_DATADIR "" | |||
| #define FLTK_DOCDIR "" | |||
| /* | |||
| * BORDER_WIDTH: | |||
| * | |||
| * Thickness of FL_UP_BOX and FL_DOWN_BOX. Current 1,2, and 3 are | |||
| * supported. | |||
| * | |||
| * 3 is the historic FLTK look. | |||
| * 2 is the default and looks like Microsoft Windows, KDE, and Qt. | |||
| * 1 is a plausible future evolution... | |||
| * | |||
| * Note that this may be simulated at runtime by redefining the boxtypes | |||
| * using Fl::set_boxtype(). | |||
| */ | |||
| #define BORDER_WIDTH 2 | |||
| /* | |||
| * HAVE_GL: | |||
| * | |||
| * Do you have OpenGL? Set this to 0 if you don't have or plan to use | |||
| * OpenGL, and FLTK will be smaller. | |||
| */ | |||
| #define HAVE_GL 0 | |||
| /* | |||
| * HAVE_GL_GLU_H: | |||
| * | |||
| * Do you have the OpenGL Utility Library header file? | |||
| * (many broken Mesa RPMs do not...) | |||
| */ | |||
| #undef HAVE_GL_GLU_H | |||
| /* | |||
| * HAVE_GLXGETPROCADDRESSARB: | |||
| * | |||
| * Do you have the OpenGL glXGetProcAddressARB() function? | |||
| */ | |||
| #undef HAVE_GLXGETPROCADDRESSARB | |||
| /* | |||
| * USE_COLORMAP: | |||
| * | |||
| * Setting this to zero will save a good deal of code (especially for | |||
| * fl_draw_image), but FLTK will only work on TrueColor visuals. | |||
| */ | |||
| #define USE_COLORMAP 1 | |||
| /* | |||
| * HAVE_XINERAMA | |||
| * | |||
| * Do we have the Xinerama library to support multi-head displays? | |||
| */ | |||
| #define HAVE_XINERAMA 0 | |||
| /* | |||
| * USE_XFT | |||
| * | |||
| * Use the new Xft library to draw anti-aliased text. | |||
| */ | |||
| #define USE_XFT 0 | |||
| /* | |||
| * HAVE_XDBE: | |||
| * | |||
| * Do we have the X double-buffer extension? | |||
| */ | |||
| #define HAVE_XDBE 0 | |||
| /* | |||
| * USE_XDBE: | |||
| * | |||
| * Actually try to use the double-buffer extension? | |||
| */ | |||
| #define USE_XDBE HAVE_XDBE | |||
| /* | |||
| * __APPLE_QUARTZ__: | |||
| * | |||
| * All Apple implementations are now based on Quartz and Cocoa, | |||
| * so this flag should always be on for Mac OS X. This flag has | |||
| * no meaning on operating systems other than Mac OS X. | |||
| */ | |||
| #undef __APPLE_QUARTZ__ | |||
| /* | |||
| * USE_X11 | |||
| * | |||
| * Should we use X11 for the current platform | |||
| * | |||
| */ | |||
| #undef USE_X11 | |||
| /* | |||
| * HAVE_OVERLAY: | |||
| * | |||
| * Use the X overlay extension? FLTK will try to use an overlay | |||
| * visual for Fl_Overlay_Window, the Gl_Window overlay, and for the | |||
| * menus. Setting this to zero will remove a substantial amount of | |||
| * code from FLTK. Overlays have only been tested on SGI servers! | |||
| */ | |||
| #define HAVE_OVERLAY 0 | |||
| /* | |||
| * HAVE_GL_OVERLAY: | |||
| * | |||
| * It is possible your GL has an overlay even if X does not. If so, | |||
| * set this to 1. | |||
| */ | |||
| #define HAVE_GL_OVERLAY HAVE_OVERLAY | |||
| /* | |||
| * WORDS_BIGENDIAN: | |||
| * | |||
| * Byte order of your machine: 1 = big-endian, 0 = little-endian. | |||
| */ | |||
| #ifdef __APPLE__ | |||
| #include <mac_endianness.h> | |||
| #else | |||
| #define WORDS_BIGENDIAN 0 | |||
| #endif | |||
| /* | |||
| * U16, U32, U64: | |||
| * | |||
| * Types used by fl_draw_image. One of U32 or U64 must be defined. | |||
| * U16 is optional but FLTK will work better with it! | |||
| */ | |||
| #undef U16 | |||
| #undef U32 | |||
| #undef U64 | |||
| /* | |||
| * HAVE_DIRENT_H, HAVE_SYS_NDIR_H, HAVE_SYS_DIR_H, HAVE_NDIR_H, | |||
| * HAVE_SCANDIR, HAVE_SCANDIR_POSIX: | |||
| * | |||
| * Where is <dirent.h> (used only by fl_file_chooser and scandir). | |||
| */ | |||
| #undef HAVE_DIRENT_H | |||
| #undef HAVE_SYS_NDIR_H | |||
| #undef HAVE_SYS_DIR_H | |||
| #undef HAVE_NDIR_H | |||
| #undef HAVE_SCANDIR | |||
| #undef HAVE_SCANDIR_POSIX | |||
| /* | |||
| * Possibly missing sprintf-style functions: | |||
| */ | |||
| #undef HAVE_VSNPRINTF | |||
| #undef HAVE_SNPRINTF | |||
| /* | |||
| * String functions and headers... | |||
| */ | |||
| #undef HAVE_STRINGS_H | |||
| #undef HAVE_STRCASECMP | |||
| #undef HAVE_STRLCAT | |||
| #undef HAVE_STRLCPY | |||
| /* | |||
| * Do we have POSIX locale support? | |||
| */ | |||
| #undef HAVE_LOCALE_H | |||
| #undef HAVE_LOCALECONV | |||
| /* | |||
| * HAVE_SYS_SELECT_H: | |||
| * | |||
| * Whether or not select() call has its own header file. | |||
| */ | |||
| #undef HAVE_SYS_SELECT_H | |||
| /* | |||
| * HAVE_SYS_STDTYPES_H: | |||
| * | |||
| * Whether or not we have the <sys/stdtypes.h> header file. | |||
| */ | |||
| #undef HAVE_SYS_STDTYPES_H | |||
| /* | |||
| * USE_POLL: | |||
| * | |||
| * Use the poll() call provided on Linux and Irix instead of select() | |||
| */ | |||
| #define USE_POLL 0 | |||
| /* | |||
| * Do we have various image libraries? | |||
| */ | |||
| #undef HAVE_LIBPNG | |||
| #undef HAVE_LIBZ | |||
| #undef HAVE_LIBJPEG | |||
| /* | |||
| * FLTK_USE_CAIRO | |||
| * | |||
| * Do we have the cairo library available and want extended cairo use in fltk ? | |||
| * will implies to link cairo.lib in all fltk based apps. | |||
| */ | |||
| #undef FLTK_USE_CAIRO | |||
| /* | |||
| * FLTK_HAVE_CAIRO | |||
| * | |||
| * Do we have the cairo library available? | |||
| */ | |||
| #undef FLTK_HAVE_CAIRO | |||
| /* | |||
| * Which header file do we include for libpng? | |||
| */ | |||
| #undef HAVE_PNG_H | |||
| #undef HAVE_LIBPNG_PNG_H | |||
| /* | |||
| * Do we have the png_xyz() functions? | |||
| */ | |||
| #undef HAVE_PNG_GET_VALID | |||
| #undef HAVE_PNG_SET_TRNS_TO_ALPHA | |||
| /* | |||
| * Do we have POSIX threading? | |||
| */ | |||
| #undef HAVE_PTHREAD | |||
| #undef HAVE_PTHREAD_H | |||
| /* | |||
| * Do we have the ALSA library? | |||
| */ | |||
| #undef HAVE_ALSA_ASOUNDLIB_H | |||
| /* | |||
| * Do we have the long long type? | |||
| */ | |||
| #undef HAVE_LONG_LONG | |||
| #ifdef HAVE_LONG_LONG | |||
| # define FLTK_LLFMT "%lld" | |||
| # define FLTK_LLCAST (long long) | |||
| #else | |||
| # define FLTK_LLFMT "%ld" | |||
| # define FLTK_LLCAST (long) | |||
| #endif /* HAVE_LONG_LONG */ | |||
| /* | |||
| * Do we have the strtoll() function? | |||
| */ | |||
| #undef HAVE_STRTOLL | |||
| #ifndef HAVE_STRTOLL | |||
| # define strtoll(nptr,endptr,base) strtol((nptr), (endptr), (base)) | |||
| #endif /* !HAVE_STRTOLL */ | |||
| /* | |||
| * Do we have the dlsym() function and header? | |||
| */ | |||
| #undef HAVE_DLFCN_H | |||
| #undef HAVE_DLSYM | |||
| /* | |||
| * End of "$Id: configh.in 8797 2011-06-09 16:21:40Z matt $". | |||
| */ | |||
| @@ -1,406 +0,0 @@ | |||
| #!/bin/sh | |||
| # | |||
| # "$Id: fltk-config.in 6614 2009-01-01 16:11:32Z matt $" | |||
| # | |||
| # FLTK configuration utility. | |||
| # | |||
| # Copyright 2000-2010 by Bill Spitzak and others. | |||
| # Original version Copyright 2000 by James Dean Palmer | |||
| # Adapted by Vincent Penne and Michael Sweet | |||
| # | |||
| # This library is free software; you can redistribute it and/or | |||
| # modify it under the terms of the GNU Library General Public | |||
| # License as published by the Free Software Foundation; either | |||
| # version 2 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 | |||
| # Library General Public License for more details. | |||
| # | |||
| # You should have received a copy of the GNU Library General Public | |||
| # License along with this library; if not, write to the Free Software | |||
| # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| # USA. | |||
| # | |||
| # Please report all bugs and problems on the following page: | |||
| # | |||
| # http://www.fltk.org/str.php | |||
| # | |||
| MAJOR_VERSION=@FLTK_VERSION_MAJOR@ | |||
| MINOR_VERSION=@FLTK_VERSION_MINOR@ | |||
| PATCH_VERSION=@FLTK_VERSION_PATCH@ | |||
| VERSION=@FLTK_VERSION_FULL@ | |||
| APIVERSION=@FLTK_VERSION@ | |||
| ### BEGIN fltk-config | |||
| selfdir=`dirname "$0"` | |||
| prefix=@CMAKE_INSTALL_PREFIX@ | |||
| exec_prefix=${prefix} | |||
| exec_prefix_set=no | |||
| bindir=@PREFIX_BIN@ | |||
| includedir=@PREFIX_INCLUDE@ | |||
| libdir=@PREFIX_LIB@ | |||
| srcdir=. | |||
| # compiler names | |||
| CC="@CC@" | |||
| CXX="@CXX@" | |||
| # flags for C++ compiler: | |||
| ARCHFLAGS="@OPTION_ARCHFLAGS@" | |||
| CFLAGS="@C_FLAGS@" | |||
| CXXFLAGS="@CAIROFLAGS@@C_FLAGS@" | |||
| LDFLAGS="@LDFLAGS@" | |||
| LDLIBS="@LD_LIBS@" | |||
| OPTIM="@OPTION_OPTIM@" | |||
| CAIROFLAGS="@CAIROFLAGS@" | |||
| # Check for local invocation, and update paths accordingly... | |||
| if test -f "$selfdir/bin/UseFLTK.cmake"; then | |||
| bindir="$selfdir/bin/fluid" | |||
| includedir="@FLTK_SOURCE_DIR@" | |||
| libdir="$selfdir/lib" | |||
| if test -f "$libdir/libntk_jpeg.a"; then | |||
| CFLAGS="-I$includedir/jpeg $CFLAGS" | |||
| CXXFLAGS="-I$includedir/jpeg $CXXFLAGS" | |||
| fi | |||
| if test -f "$libdir/libfltk_z.a"; then | |||
| CFLAGS="-I$includedir/zlib $CFLAGS" | |||
| CXXFLAGS="-I$includedir/zlib $CXXFLAGS" | |||
| fi | |||
| if test -f "$libdir/libntk_png.a"; then | |||
| CFLAGS="-I$includedir/png $CFLAGS" | |||
| CXXFLAGS="-I$includedir/png $CXXFLAGS" | |||
| fi | |||
| fi | |||
| if test -d $includedir/FL/images; then | |||
| CFLAGS="-I$includedir/FL/images $CFLAGS" | |||
| CXXFLAGS="-I$includedir/FL/images $CXXFLAGS" | |||
| fi | |||
| if test -f "$libdir/libfltk_cairo.a"; then | |||
| CFLAGS="$CAIROFLAGS $CFLAGS" | |||
| CXXFLAGS="$CAIROFLAGS $CXXFLAGS" | |||
| fi | |||
| # libraries to link with: | |||
| LIBNAME="@LIBNAME@" | |||
| DSONAME="@DSONAME@" | |||
| DSOLINK="@DSOLINK@" | |||
| IMAGELIBS="@IMAGELIBS@" | |||
| STATICIMAGELIBS="@STATICIMAGELIBS@" | |||
| CAIROLIBS="@CAIROLIBS@" | |||
| SHAREDSUFFIX="@SHAREDSUFFIX@" | |||
| usage () | |||
| { | |||
| echo "Usage: fltk-config [OPTIONS] | |||
| Options: | |||
| [--version] | |||
| [--api-version] | |||
| Options telling what we are doing: | |||
| [--use-gl] use GL | |||
| [--use-images] use extra image formats (PNG, JPEG) | |||
| [--use-glut] use glut compatibility layer | |||
| [--use-forms] use forms compatibility layer | |||
| [--use-cairo] use cairo graphics lib | |||
| Options telling what information we request: | |||
| [--cc] return C compiler used to compile FLTK | |||
| [--cxx] return C++ compiler used to compile FLTK | |||
| [--optim] return compiler optimization used to compile FLTK | |||
| [--cflags] return flags to compile C using FLTK | |||
| [--cxxflags] return flags to compile C++ using FLTK | |||
| [--ldflags] return flags to link against FLTK | |||
| [--ldstaticflags] return flags to link against static FLTK library | |||
| even if there are DSOs installed | |||
| [--libs] return FLTK libraries full path for dependencies | |||
| [--prefix] return FLTK install time --prefix directory | |||
| [--includedir] return FLTK install time include directory | |||
| Options to compile and link an application: | |||
| [-g] compile the program with debugging information | |||
| [-Dname[=value]] compile the program with the given define | |||
| [--compile program.cxx] | |||
| [--post program] prepare the program for desktop use | |||
| " | |||
| exit $1 | |||
| } | |||
| if test $# -eq 0; then | |||
| usage 1 | |||
| fi | |||
| no_plugins=no | |||
| compile= | |||
| post= | |||
| debug= | |||
| # Parse command line options | |||
| while test $# -gt 0 | |||
| do | |||
| case "$1" in | |||
| -*=*) | |||
| optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` | |||
| ;; | |||
| *) | |||
| optarg= | |||
| ;; | |||
| esac | |||
| case $1 in | |||
| --version) | |||
| echo $VERSION | |||
| ;; | |||
| --api-version) | |||
| echo $APIVERSION | |||
| ;; | |||
| --cc) | |||
| echo $CC | |||
| ;; | |||
| --cxx) | |||
| echo $CXX | |||
| ;; | |||
| --optim) | |||
| echo_optim=yes | |||
| ;; | |||
| --use-gl | --use-glut) | |||
| use_gl=yes | |||
| ;; | |||
| --use-forms) | |||
| use_forms=yes | |||
| ;; | |||
| --use-images) | |||
| use_images=yes | |||
| ;; | |||
| --use-cairo) | |||
| use_cairo=yes | |||
| ;; | |||
| --cflags) | |||
| echo_cflags=yes | |||
| ;; | |||
| --cxxflags) | |||
| echo_cxxflags=yes | |||
| ;; | |||
| --ldflags) | |||
| echo_ldflags=yes | |||
| ;; | |||
| --ldstaticflags) | |||
| echo_ldstaticflags=yes | |||
| ;; | |||
| --libs) | |||
| echo_libs=yes | |||
| ;; | |||
| --prefix) | |||
| echo_prefix=yes | |||
| ;; | |||
| --includedir) | |||
| echo_includedir=yes | |||
| ;; | |||
| -g) | |||
| debug=-g | |||
| ;; | |||
| -D*) | |||
| CXXFLAGS="$CXXFLAGS $1" | |||
| ;; | |||
| --compile) | |||
| compile="$2" | |||
| shift | |||
| ;; | |||
| --post) | |||
| post="$2" | |||
| shift | |||
| ;; | |||
| *) | |||
| echo_help=yes | |||
| ;; | |||
| esac | |||
| shift | |||
| done | |||
| if test "$includedir" != /usr/include; then | |||
| includes=-I$includedir | |||
| else | |||
| includes= | |||
| fi | |||
| if test "$libdir" != /usr/lib -a "$libdir" != /usr/lib32; then | |||
| libs=-L$libdir | |||
| else | |||
| libs= | |||
| fi | |||
| # Calculate needed libraries | |||
| LDSTATIC="$libdir/libfltk.a $LDLIBS" | |||
| LDLIBS="-lfltk$SHAREDSUFFIX $LDLIBS" | |||
| if test x$use_forms = xyes; then | |||
| LDLIBS="-lfltk_forms$SHAREDSUFFIX $LDLIBS" | |||
| LDSTATIC="$libdir/libfltk_forms.a $LDSTATIC" | |||
| fi | |||
| if test x$use_gl = xyes; then | |||
| LDLIBS="-lfltk_gl$SHAREDSUFFIX @GLLIB@ $LDLIBS" | |||
| LDSTATIC="$libdir/libfltk_gl.a @GLLIB@ $LDSTATIC" | |||
| fi | |||
| if test x$use_images = xyes; then | |||
| LDLIBS="-lfltk_images$SHAREDSUFFIX $IMAGELIBS $LDLIBS" | |||
| LDSTATIC="$libdir/libfltk_images.a $STATICIMAGELIBS $LDSTATIC" | |||
| fi | |||
| if test x$use_cairo = xyes; then | |||
| LDLIBS="-lfltk_cairo$SHAREDSUFFIX $CAIROLIBS $LDLIBS" | |||
| LDSTATIC="$libdir/libfltk_cairo.a $CAIROLIBS $LDSTATIC" | |||
| fi | |||
| LDLIBS="$DSOLINK $LDFLAGS $libs $LDLIBS" | |||
| LDSTATIC="$LDFLAGS $LDSTATIC" | |||
| # Answer to user requests | |||
| if test -n "$echo_help"; then | |||
| usage 1 | |||
| fi | |||
| if test -n "$compile"; then | |||
| case "$compile" in | |||
| *.cxx) | |||
| prog="`basename \"$compile\" .cxx`" | |||
| ;; | |||
| *.cpp) | |||
| prog="`basename \"$compile\" .cpp`" | |||
| ;; | |||
| *.cc) | |||
| prog="`basename \"$compile\" .cc`" | |||
| ;; | |||
| *.C) | |||
| prog="`basename \"$compile\" .C`" | |||
| ;; | |||
| *) | |||
| echo "ERROR: Unknown/bad C++ source file extension on \"$compile\"!" | |||
| exit 1 | |||
| ;; | |||
| esac | |||
| post="$prog" | |||
| echo $CXX $ARCHFLAGS $includes $CXXFLAGS $debug -o "'$prog'" "'$compile'" $LDSTATIC | |||
| $CXX $ARCHFLAGS $includes $CXXFLAGS $debug -o "$prog" "$compile" $LDSTATIC || exit 1 | |||
| fi | |||
| if test -n "$post"; then | |||
| case "`uname`" in | |||
| Darwin) | |||
| echo Creating "'$post.app'" bundle for desktop... | |||
| id=`echo $post | tr ' ' '_'` | |||
| # Make the bundle directory and move the executable there | |||
| rm -rf "$post.app/Contents/MacOS" | |||
| mkdir -p "$post.app/Contents/MacOS" | |||
| mv "$post" "$post.app/Contents/MacOS" | |||
| # Make a shell script that runs the bundled executable | |||
| echo "#!/bin/sh" >"$post" | |||
| echo 'dir="`dirname '"'"'$0'"'"'`"' >>"$post" | |||
| echo 'exec "$dir/'"$post.app/Contents/MacOS/$post"'" "$@"' >>"$post" | |||
| chmod +x "$post" | |||
| # Make the simplest Info.plist needed for an application | |||
| cat >"$post.app/Contents/Info.plist" <<EOF | |||
| <?xml version="1.0" encoding="UTF-8"?> | |||
| <plist version="0.9"> | |||
| <dict> | |||
| <key>CFBundleInfoDictionaryVersion</key> | |||
| <string>6.0</string> | |||
| <key>CFBundleExecutable</key> | |||
| <string>$post</string> | |||
| <key>CFBundleIdentifier</key> | |||
| <string>org.fltk.$id</string> | |||
| <key>CFBundleName</key> | |||
| <string>$post</string> | |||
| <key>CFBundlePackageType</key> | |||
| <string>APPL</string> | |||
| </dict> | |||
| </plist> | |||
| EOF | |||
| ;; | |||
| esac | |||
| fi | |||
| if test "$echo_cflags" = "yes"; then | |||
| echo $includes $CFLAGS | |||
| fi | |||
| if test "$echo_cxxflags" = "yes"; then | |||
| echo $includes $CXXFLAGS | |||
| fi | |||
| if test "$echo_optim" = "yes"; then | |||
| echo $OPTIM | |||
| fi | |||
| if test "$echo_ldflags" = "yes"; then | |||
| my_libs= | |||
| libdirs=$libs | |||
| for i in $LDLIBS ; do | |||
| if test $i != -L$libdir ; then | |||
| if test -z "$my_libs" ; then | |||
| my_libs="$i" | |||
| else | |||
| my_libs="$my_libs $i" | |||
| fi | |||
| fi | |||
| done | |||
| echo $libdirs $my_libs | |||
| fi | |||
| if test "$echo_ldstaticflags" = "yes"; then | |||
| echo $LDSTATIC | |||
| fi | |||
| if test "$echo_libs" = "yes"; then | |||
| USELIBS="$libdir/libfltk.a" | |||
| if test x$use_forms = xyes; then | |||
| USELIBS="$libdir/libfltk_forms.a $USELIBS" | |||
| fi | |||
| if test x$use_gl = xyes; then | |||
| USELIBS="$libdir/libfltk_gl.a $USELIBS" | |||
| fi | |||
| if test x$use_cairo = xyes; then | |||
| USELIBS="$libdir/libfltk_cairo.a $USELIBS" | |||
| fi | |||
| if test x$use_images = xyes; then | |||
| USELIBS="$libdir/libfltk_images.a $USELIBS" | |||
| for lib in ntk_jpeg ntk_png fltk_z; do | |||
| if test -f $libdir/lib$lib.a; then | |||
| USELIBS="$libdir/lib$lib.a $USELIBS" | |||
| fi | |||
| done | |||
| fi | |||
| echo $USELIBS | |||
| fi | |||
| if test "$echo_prefix" = "yes"; then | |||
| echo $prefix | |||
| fi | |||
| if test "$echo_includedir" = "yes"; then | |||
| echo $includedir | |||
| fi | |||
| # | |||
| # End of "$Id: fltk-config.in 6614 2009-01-01 16:11:32Z matt $". | |||
| # | |||
| @@ -1,45 +0,0 @@ | |||
| set(CPPFILES | |||
| CodeEditor.cxx | |||
| Fl_Function_Type.cxx | |||
| Fl_Group_Type.cxx | |||
| Fl_Menu_Type.cxx | |||
| Fl_Type.cxx | |||
| Fl_Widget_Type.cxx | |||
| Fl_Window_Type.cxx | |||
| Fluid_Image.cxx | |||
| about_panel.cxx | |||
| align_widget.cxx | |||
| alignment_panel.cxx | |||
| code.cxx | |||
| factory.cxx | |||
| file.cxx | |||
| fluid.cxx | |||
| function_panel.cxx | |||
| template_panel.cxx | |||
| undo.cxx | |||
| widget_panel.cxx | |||
| ) | |||
| add_executable(ntk-fluid ${CPPFILES}) | |||
| target_link_libraries(ntk-fluid fltk fltk_images fltk_forms) | |||
| # link in optional libraries | |||
| if(FLTK_USE_GL) | |||
| target_link_libraries(ntk-fluid fltk_gl) | |||
| target_link_libraries(ntk-fluid ${OPENGL_LIBRARIES}) | |||
| endif(FLTK_USE_GL) | |||
| if(USE_XFT) | |||
| target_link_libraries(ntk-fluid ${X11_Xft_LIB}) | |||
| endif(USE_XFT) | |||
| if(HAVE_XINERAMA) | |||
| target_link_libraries(ntk-fluid ${X11_Xinerama_LIB}) | |||
| endif(HAVE_XINERAMA) | |||
| install(TARGETS ntk-fluid | |||
| EXPORT fltk-install | |||
| DESTINATION ${PREFIX_BIN} | |||
| ) | |||
| @@ -1,135 +0,0 @@ | |||
| # | |||
| # "$Id: Makefile 8086 2010-12-20 20:33:24Z matt $" | |||
| # | |||
| # FLUID makefile for the Fast Light Tool Kit (FLTK). | |||
| # | |||
| # Copyright 1998-2010 by Bill Spitzak and others. | |||
| # | |||
| # This library is free software; you can redistribute it and/or | |||
| # modify it under the terms of the GNU Library General Public | |||
| # License as published by the Free Software Foundation; either | |||
| # version 2 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 | |||
| # Library General Public License for more details. | |||
| # | |||
| # You should have received a copy of the GNU Library General Public | |||
| # License along with this library; if not, write to the Free Software | |||
| # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| # USA. | |||
| # | |||
| # Please report all bugs and problems on the following page: | |||
| # | |||
| # http://www.fltk.org/str.php | |||
| # | |||
| CPPFILES = \ | |||
| CodeEditor.cxx \ | |||
| Fl_Function_Type.cxx \ | |||
| Fl_Group_Type.cxx \ | |||
| Fl_Menu_Type.cxx \ | |||
| Fl_Type.cxx \ | |||
| Fl_Widget_Type.cxx \ | |||
| Fl_Window_Type.cxx \ | |||
| Fluid_Image.cxx \ | |||
| about_panel.cxx \ | |||
| align_widget.cxx \ | |||
| alignment_panel.cxx \ | |||
| code.cxx \ | |||
| factory.cxx \ | |||
| file.cxx \ | |||
| fluid.cxx \ | |||
| function_panel.cxx \ | |||
| template_panel.cxx \ | |||
| undo.cxx \ | |||
| widget_panel.cxx | |||
| ################################################################ | |||
| OBJECTS = $(CPPFILES:.cxx=.o) | |||
| include ../makeinclude | |||
| all: $(FLUID) ntk-fluid$(EXEEXT) | |||
| ntk-fluid$(EXEEXT): $(OBJECTS) $(LIBNAME) $(FLLIBNAME) \ | |||
| $(IMGLIBNAME) | |||
| echo Linking $@... | |||
| $(CXX) $(ARCHFLAGS) $(LDFLAGS) -o $@ $(OBJECTS) $(LINKFLTKFORMS) $(LINKFLTKIMG) $(LDLIBS) | |||
| $(OSX_ONLY) $(INSTALL_BIN) ntk-fluid ntk-fluid.app/Contents/MacOS | |||
| ntk-fluid-shared$(EXEEXT): $(OBJECTS) ../src/$(DSONAME) ../src/$(FLDSONAME) \ | |||
| ../src/$(IMGDSONAME) | |||
| echo Linking $@... | |||
| $(CXX) $(ARCHFLAGS) $(LDFLAGS) -o $@ $(OBJECTS) $(LINKSHARED) $(LDLIBS) | |||
| clean: | |||
| -$(RM) *.o core.* *~ *.bck *.bck | |||
| -$(RM) core ntk-fluid$(EXEEXT) ntk-fluid-shared$(EXEEXT) | |||
| -$(RM) ntk-fluid.app/Contents/MacOS/ntk-fluid$(EXEEXT) | |||
| depend: $(CPPFILES) | |||
| makedepend -Y -I.. -f makedepend $(CPPFILES) | |||
| # Automatically generated dependencies... | |||
| include makedepend | |||
| install: all | |||
| echo "Installing FLUID in $(DESTDIR)$(bindir)..." | |||
| -$(INSTALL_DIR) $(DESTDIR)$(bindir) | |||
| $(INSTALL_BIN) $(FLUID) $(DESTDIR)$(bindir)/ntk-fluid$(EXEEXT) | |||
| install-linux: | |||
| -$(INSTALL_DIR) $(DESTDIR)/usr/share/applications | |||
| $(INSTALL_DATA) ntk-fluid.desktop $(DESTDIR)/usr/share/applications | |||
| for size in 16 32 48 64 128; do \ | |||
| if test ! -d $(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps; then \ | |||
| $(INSTALL_DIR) $(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps; \ | |||
| fi; \ | |||
| $(INSTALL_DATA) icons/ntk-fluid-$$size.png $(DESTDIR)/usr/share/icons/hicolor/$${size}x$${size}/apps/ntk-fluid.png; \ | |||
| done | |||
| -$(INSTALL_DIR) $(DESTDIR)/usr/share/mimelnk/application | |||
| $(INSTALL_DATA) x-ntk-fluid.desktop $(DESTDIR)/usr/share/mimelnk/application | |||
| install-osx: | |||
| echo Installing Fluid in $(DESTDIR)/Applications... | |||
| -$(INSTALL_DIR) $(DESTDIR)/Applications/ntk-fluid.app | |||
| -$(INSTALL_DIR) $(DESTDIR)/Applications/ntk-fluid.app/Contents | |||
| $(INSTALL_DATA) ntk-fluid.app/Contents/Info.plist $(DESTDIR)/Applications/ntk-fluid.app/Contents/Info.plist | |||
| $(INSTALL_DATA) ntk-fluid.app/Contents/PkgInfo $(DESTDIR)/Applications/ntk-fluid.app/Contents/PkgInfo | |||
| -$(INSTALL_DIR) $(DESTDIR)/Applications/ntk-fluid.app/Contents/MacOS | |||
| $(RM) $(DESTDIR)/Applications/ntk-fluid.app/Contents/MacOS/ntk-fluid | |||
| $(LN) $(bindir)/ntk-fluid $(DESTDIR)/Applications/ntk-fluid.app/Contents/MacOS/ntk-fluid | |||
| -$(INSTALL_DIR) $(DESTDIR)/Applications/ntk-fluid.app/Contents/Resources | |||
| $(INSTALL_DATA) ntk-fluid.app/Contents/Resources/ntk-fluid.icns $(DESTDIR)/Applications/ntk-fluid.app/Contents/Resources | |||
| uninstall: | |||
| $(RM) $(DESTDIR)$(bindir)/ntk-fluid$(EXEEXT) | |||
| uninstall-linux: | |||
| $(RM) $(DESTDIR)/usr/share/applications/ntk-fluid.desktop | |||
| $(RM) $(DESTDIR)/usr/share/icons/hicolor/*/ntk-fluid.png | |||
| $(RM) $(DESTDIR)/usr/share/mimelnk/application/x-ntk-fluid.desktop | |||
| uninstall-osx: | |||
| $(RM) -r $(DESTDIR)/Applications/ntk-fluid.app | |||
| # | |||
| # Note: The rebuild target can only be used if you have the original .fl | |||
| # files. This is normally only used by the FLTK maintainers... | |||
| # | |||
| rebuild: | |||
| ./ntk-fluid -c about_panel.fl | |||
| ./ntk-fluid -c alignment_panel.fl | |||
| ./ntk-fluid -c function_panel.fl | |||
| ./ntk-fluid -c print_panel.fl | |||
| ./ntk-fluid -c template_panel.fl | |||
| ./ntk-fluid -c widget_panel.fl | |||
| # | |||
| # End of "$Id: Makefile 8086 2010-12-20 20:33:24Z matt $". | |||
| # | |||
| @@ -1,406 +0,0 @@ | |||
| # DO NOT DELETE THIS LINE -- make depend depends on it. | |||
| CodeEditor.o: CodeEditor.h ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H | |||
| CodeEditor.o: ../FL/fl_types.h ../FL/Xutf8.h ../FL/Enumerations.H | |||
| CodeEditor.o: ../FL/Fl_Text_Buffer.H ../FL/Fl_Text_Editor.H | |||
| CodeEditor.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H ../FL/x.H | |||
| CodeEditor.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Fl_Widget.H | |||
| CodeEditor.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| CodeEditor.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H ../FL/Fl_Image.H | |||
| CodeEditor.o: ../FL/Fl_Bitmap.H ../FL/Fl_Image.H ../FL/Fl_Pixmap.H | |||
| CodeEditor.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Scrollbar.H ../FL/Fl_Slider.H | |||
| CodeEditor.o: ../FL/Fl_Valuator.H ../FL/Fl_Text_Buffer.H | |||
| Fl_Function_Type.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H | |||
| Fl_Function_Type.o: ../FL/fl_types.h ../FL/Xutf8.h ../FL/Enumerations.H | |||
| Fl_Function_Type.o: ../FL/Fl_Preferences.H ../FL/Fl_File_Chooser.H | |||
| Fl_Function_Type.o: ../FL/Fl_Double_Window.H ../FL/Fl_Window.H | |||
| Fl_Function_Type.o: ../FL/Fl_Group.H ../FL/Fl_Widget.H ../FL/Fl_Group.H | |||
| Fl_Function_Type.o: ../FL/Fl_Choice.H ../FL/Fl_Menu_.H ../FL/Fl_Menu_Item.H | |||
| Fl_Function_Type.o: ../FL/Fl_Image.H ../FL/Fl_Menu_Button.H ../FL/Fl_Button.H | |||
| Fl_Function_Type.o: ../FL/Fl_Tile.H ../FL/Fl_File_Browser.H | |||
| Fl_Function_Type.o: ../FL/Fl_Browser.H ../FL/Fl_Browser_.H | |||
| Fl_Function_Type.o: ../FL/Fl_Scrollbar.H ../FL/Fl_Slider.H | |||
| Fl_Function_Type.o: ../FL/Fl_Valuator.H ../FL/Fl_File_Icon.H ../FL/Fl.H | |||
| Fl_Function_Type.o: ../FL/filename.H ../FL/Fl_Box.H ../FL/Fl_Check_Button.H | |||
| Fl_Function_Type.o: ../FL/Fl_Light_Button.H ../FL/Fl_Button.H | |||
| Fl_Function_Type.o: ../FL/Fl_File_Input.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| Fl_Function_Type.o: ../FL/Fl_Return_Button.H ../FL/fl_ask.H Fl_Type.h | |||
| Fl_Function_Type.o: ../FL/Fl_Widget.H ../FL/Fl_Menu.H ../FL/Fl_Plugin.H | |||
| Fl_Function_Type.o: ../FL/Fl_Preferences.H Fluid_Image.h | |||
| Fl_Function_Type.o: ../FL/Fl_Shared_Image.H ../FL/fl_draw.H ../FL/x.H | |||
| Fl_Function_Type.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| Fl_Function_Type.o: ../FL/Fl_Image.H ../FL/Fl_Bitmap.H ../FL/Fl_Pixmap.H | |||
| Fl_Function_Type.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Tabs.H ../FL/Fl_Pack.H | |||
| Fl_Function_Type.o: ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| Fl_Function_Type.o: ../FL/Fl_Input_Choice.H ../FL/Fl_Menu_Bar.H | |||
| Fl_Function_Type.o: ../FL/fl_show_input.H ../FL/fl_ask.H ../src/flstring.h | |||
| Fl_Function_Type.o: ../FL/Fl_Export.H ../config.h function_panel.h | |||
| Fl_Function_Type.o: ../FL/Fl_Light_Button.H ../FL/Fl_Text_Editor.H | |||
| Fl_Function_Type.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H | |||
| Fl_Function_Type.o: ../FL/Fl_Text_Buffer.H CodeEditor.h | |||
| Fl_Function_Type.o: ../FL/Fl_Text_Buffer.H comments.h | |||
| Fl_Group_Type.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H | |||
| Fl_Group_Type.o: ../FL/fl_types.h ../FL/Xutf8.h ../FL/Enumerations.H | |||
| Fl_Group_Type.o: ../FL/Fl_Group.H ../FL/Fl_Table.H ../FL/Fl_Scroll.H | |||
| Fl_Group_Type.o: ../FL/Fl_Group.H ../FL/Fl_Widget.H ../FL/Fl_Scrollbar.H | |||
| Fl_Group_Type.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/Fl_Box.H | |||
| Fl_Group_Type.o: ../FL/Fl_Scrollbar.H ../FL/fl_message.H ../FL/fl_ask.H | |||
| Fl_Group_Type.o: Fl_Widget_Type.h Fl_Type.h ../FL/Fl_Widget.H ../FL/Fl_Menu.H | |||
| Fl_Group_Type.o: ../FL/Fl_Menu_Item.H ../FL/Fl_Image.H ../FL/Fl_Plugin.H | |||
| Fl_Group_Type.o: ../FL/Fl_Preferences.H Fluid_Image.h ../FL/Fl_Shared_Image.H | |||
| Fl_Group_Type.o: ../FL/fl_draw.H ../FL/x.H ../FL/Fl_Window.H | |||
| Fl_Group_Type.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| Fl_Group_Type.o: ../FL/Fl_Image.H ../FL/Fl_Bitmap.H ../FL/Fl_Pixmap.H | |||
| Fl_Group_Type.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Tabs.H ../FL/Fl_Pack.H | |||
| Fl_Group_Type.o: ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H ../FL/Fl_Menu_Button.H | |||
| Fl_Group_Type.o: ../FL/Fl_Menu_.H ../FL/Fl_Choice.H ../FL/Fl_Input_Choice.H | |||
| Fl_Group_Type.o: ../FL/Fl_Input.H ../FL/Fl_Input_.H ../FL/Fl_Menu_Bar.H | |||
| Fl_Group_Type.o: ../src/flstring.h ../FL/Fl_Export.H ../config.h | |||
| Fl_Menu_Type.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| Fl_Menu_Type.o: ../FL/Xutf8.h ../FL/Enumerations.H Fl_Widget_Type.h Fl_Type.h | |||
| Fl_Menu_Type.o: ../FL/Fl_Widget.H ../FL/Fl_Menu.H ../FL/Fl_Menu_Item.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Widget.H ../FL/Fl_Image.H ../FL/Fl_Plugin.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Preferences.H Fluid_Image.h ../FL/Fl_Shared_Image.H | |||
| Fl_Menu_Type.o: ../FL/fl_draw.H ../FL/x.H ../FL/Fl_Window.H ../FL/Fl_Group.H | |||
| Fl_Menu_Type.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Image.H ../FL/Fl_Bitmap.H ../FL/Fl_Pixmap.H | |||
| Fl_Menu_Type.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Tabs.H ../FL/Fl_Pack.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Group.H ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H ../FL/Fl_Choice.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Menu_Bar.H alignment_panel.h ../FL/Fl_Text_Buffer.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H ../FL/Fl_Scrollbar.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/Fl_Text_Buffer.H | |||
| Fl_Menu_Type.o: ../FL/filename.H ../FL/Fl_Double_Window.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Preferences.H ../FL/Fl_Tooltip.H ../FL/Fl_Button.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Box.H ../FL/Fl_Check_Button.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Light_Button.H ../FL/Fl_Button.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Int_Input.H ../FL/Fl_Input.H ../FL/Fl_Spinner.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Repeat_Button.H ../FL/Fl.H ../FL/Fl_Return_Button.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Round_Button.H ../FL/fl_message.H ../FL/fl_ask.H | |||
| Fl_Menu_Type.o: ../FL/Fl_Value_Input.H ../src/flstring.h ../FL/Fl_Export.H | |||
| Fl_Menu_Type.o: ../config.h ../FL/Fl_Output.H Shortcut_Button.h | |||
| Fl_Type.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| Fl_Type.o: ../FL/Xutf8.h ../FL/Enumerations.H ../FL/Fl_Browser_.H | |||
| Fl_Type.o: ../FL/Fl_Group.H ../FL/Fl_Widget.H ../FL/Fl_Scrollbar.H | |||
| Fl_Type.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/fl_draw.H ../FL/x.H | |||
| Fl_Type.o: ../FL/Fl_Window.H ../FL/Enumerations.H ../FL/Fl_Window.H | |||
| Fl_Type.o: ../FL/Fl_Device.H ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H | |||
| Fl_Type.o: ../FL/Fl_Image.H ../FL/Fl_Bitmap.H ../FL/Fl_Image.H | |||
| Fl_Type.o: ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H ../src/flstring.h | |||
| Fl_Type.o: ../FL/Fl_Export.H ../config.h Fl_Type.h ../FL/Fl_Widget.H | |||
| Fl_Type.o: ../FL/Fl_Menu.H ../FL/Fl_Menu_Item.H Fluid_Image.h | |||
| Fl_Type.o: ../FL/Fl_Shared_Image.H ../FL/Fl_Tabs.H ../FL/Fl_Pack.H | |||
| Fl_Type.o: ../FL/Fl_Group.H ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| Fl_Type.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H ../FL/Fl_Choice.H | |||
| Fl_Type.o: ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| Fl_Type.o: ../FL/Fl_Menu_Bar.H undo.h pixmaps/lock.xpm pixmaps/protected.xpm | |||
| Fl_Type.o: pixmaps/flWindow.xpm pixmaps/flButton.xpm | |||
| Fl_Type.o: pixmaps/flCheckButton.xpm pixmaps/flRoundButton.xpm | |||
| Fl_Type.o: pixmaps/flBox.xpm pixmaps/flGroup.xpm pixmaps/flFunction.xpm | |||
| Fl_Type.o: pixmaps/flCode.xpm pixmaps/flCodeBlock.xpm pixmaps/flComment.xpm | |||
| Fl_Type.o: pixmaps/flData.xpm pixmaps/flDeclaration.xpm | |||
| Fl_Type.o: pixmaps/flDeclarationBlock.xpm pixmaps/flClass.xpm | |||
| Fl_Type.o: pixmaps/flTabs.xpm pixmaps/flInput.xpm pixmaps/flChoice.xpm | |||
| Fl_Type.o: pixmaps/flMenuitem.xpm pixmaps/flMenubar.xpm pixmaps/flSubmenu.xpm | |||
| Fl_Type.o: pixmaps/flScroll.xpm pixmaps/flTile.xpm pixmaps/flWizard.xpm | |||
| Fl_Type.o: pixmaps/flPack.xpm pixmaps/flReturnButton.xpm | |||
| Fl_Type.o: pixmaps/flLightButton.xpm pixmaps/flRepeatButton.xpm | |||
| Fl_Type.o: pixmaps/flMenuButton.xpm pixmaps/flOutput.xpm | |||
| Fl_Type.o: pixmaps/flTextDisplay.xpm pixmaps/flTextEdit.xpm | |||
| Fl_Type.o: pixmaps/flFileInput.xpm pixmaps/flBrowser.xpm | |||
| Fl_Type.o: pixmaps/flCheckBrowser.xpm pixmaps/flFileBrowser.xpm | |||
| Fl_Type.o: pixmaps/flHelp.xpm pixmaps/flProgress.xpm | |||
| Fl_Type.o: pixmaps/flSlider.xpm pixmaps/flScrollBar.xpm | |||
| Fl_Type.o: pixmaps/flValueSlider.xpm pixmaps/flAdjuster.xpm | |||
| Fl_Type.o: pixmaps/flCounter.xpm pixmaps/flDial.xpm pixmaps/flRoller.xpm | |||
| Fl_Type.o: pixmaps/flValueInput.xpm pixmaps/flValueOutput.xpm | |||
| Fl_Type.o: pixmaps/flSpinner.xpm pixmaps/flWidgetClass.xpm pixmaps/flTree.xpm | |||
| Fl_Type.o: pixmaps/flTable.xpm | |||
| Fl_Widget_Type.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H | |||
| Fl_Widget_Type.o: ../FL/fl_types.h ../FL/Xutf8.h ../FL/Enumerations.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Group.H ../FL/Fl_Table.H ../FL/Fl_Scroll.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Group.H ../FL/Fl_Widget.H ../FL/Fl_Scrollbar.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/Fl_Box.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Scrollbar.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| Fl_Widget_Type.o: Fl_Widget_Type.h Fl_Type.h ../FL/Fl_Widget.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Menu.H ../FL/Fl_Menu_Item.H ../FL/Fl_Image.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H Fluid_Image.h | |||
| Fl_Widget_Type.o: ../FL/Fl_Shared_Image.H ../FL/fl_draw.H ../FL/x.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Window.H ../FL/Enumerations.H ../FL/Fl_Window.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Device.H ../FL/Fl_Image.H ../FL/Fl_Bitmap.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H ../FL/Fl_Tabs.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Pack.H ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H ../FL/Fl_Choice.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Input_Choice.H ../FL/Fl_Menu_Bar.H | |||
| Fl_Widget_Type.o: alignment_panel.h ../FL/Fl_Text_Buffer.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Text_Buffer.H ../FL/filename.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Double_Window.H ../FL/Fl_Preferences.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Tooltip.H ../FL/Fl_Button.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Check_Button.H ../FL/Fl_Light_Button.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Button.H ../FL/Fl_Int_Input.H ../FL/Fl_Input.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Spinner.H ../FL/Fl_Repeat_Button.H ../FL/Fl.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Return_Button.H ../FL/Fl_Round_Button.H | |||
| Fl_Widget_Type.o: ../FL/fl_message.H ../FL/fl_ask.H ../FL/Fl_Slider.H | |||
| Fl_Widget_Type.o: ../src/flstring.h ../FL/Fl_Export.H ../config.h | |||
| Fl_Widget_Type.o: widget_panel.h ../FL/Fl_Value_Input.H | |||
| Fl_Widget_Type.o: ../FL/Fl_Light_Button.H Shortcut_Button.h CodeEditor.h | |||
| Fl_Widget_Type.o: ../FL/Fl_Text_Editor.H ../FL/Fl_Text_Display.H | |||
| Fl_Widget_Type.o: ../FL/fl_show_colormap.H | |||
| Fl_Window_Type.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H | |||
| Fl_Window_Type.o: ../FL/fl_types.h ../FL/Xutf8.h ../FL/Enumerations.H | |||
| Fl_Window_Type.o: ../FL/Fl_Overlay_Window.H ../FL/Fl_Double_Window.H | |||
| Fl_Window_Type.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Fl_Widget.H | |||
| Fl_Window_Type.o: ../FL/fl_message.H ../FL/fl_ask.H ../FL/fl_draw.H ../FL/x.H | |||
| Fl_Window_Type.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| Fl_Window_Type.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H ../FL/Fl_Image.H | |||
| Fl_Window_Type.o: ../FL/Fl_Bitmap.H ../FL/Fl_Image.H ../FL/Fl_Pixmap.H | |||
| Fl_Window_Type.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Menu_Item.H | |||
| Fl_Window_Type.o: ../FL/Fl_Round_Button.H ../FL/Fl_Light_Button.H | |||
| Fl_Window_Type.o: ../FL/Fl_Button.H Fl_Widget_Type.h Fl_Type.h | |||
| Fl_Window_Type.o: ../FL/Fl_Widget.H ../FL/Fl_Menu.H ../FL/Fl_Menu_Item.H | |||
| Fl_Window_Type.o: Fluid_Image.h ../FL/Fl_Shared_Image.H ../FL/Fl_Tabs.H | |||
| Fl_Window_Type.o: ../FL/Fl_Pack.H ../FL/Fl_Group.H ../FL/Fl_Wizard.H | |||
| Fl_Window_Type.o: ../FL/Fl_Menu_.H ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H | |||
| Fl_Window_Type.o: ../FL/Fl_Choice.H ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H | |||
| Fl_Window_Type.o: ../FL/Fl_Input_.H ../FL/Fl_Menu_Bar.H undo.h | |||
| Fl_Window_Type.o: alignment_panel.h ../FL/Fl_Text_Buffer.H | |||
| Fl_Window_Type.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H | |||
| Fl_Window_Type.o: ../FL/Fl_Scrollbar.H ../FL/Fl_Slider.H ../FL/Fl_Valuator.H | |||
| Fl_Window_Type.o: ../FL/Fl_Text_Buffer.H ../FL/filename.H | |||
| Fl_Window_Type.o: ../FL/Fl_Double_Window.H ../FL/Fl_Preferences.H | |||
| Fl_Window_Type.o: ../FL/Fl_Tooltip.H ../FL/Fl_Button.H ../FL/Fl_Box.H | |||
| Fl_Window_Type.o: ../FL/Fl_Check_Button.H ../FL/Fl_Int_Input.H | |||
| Fl_Window_Type.o: ../FL/Fl_Input.H ../FL/Fl_Spinner.H | |||
| Fl_Window_Type.o: ../FL/Fl_Repeat_Button.H ../FL/Fl.H | |||
| Fl_Window_Type.o: ../FL/Fl_Return_Button.H widget_panel.h | |||
| Fl_Window_Type.o: ../FL/Fl_Value_Input.H ../FL/Fl_Light_Button.H | |||
| Fl_Window_Type.o: Shortcut_Button.h CodeEditor.h ../FL/Fl_Text_Editor.H | |||
| Fl_Window_Type.o: ../FL/Fl_Text_Display.H ../src/flstring.h ../FL/Fl_Export.H | |||
| Fl_Window_Type.o: ../config.h | |||
| Fluid_Image.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| Fluid_Image.o: ../FL/Xutf8.h ../FL/Enumerations.H ../FL/Fl_Widget.H Fl_Type.h | |||
| Fluid_Image.o: ../FL/Fl_Menu.H ../FL/Fl_Menu_Item.H ../FL/Fl_Widget.H | |||
| Fluid_Image.o: ../FL/Fl_Image.H ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H | |||
| Fluid_Image.o: Fluid_Image.h ../FL/Fl_Shared_Image.H ../FL/fl_draw.H | |||
| Fluid_Image.o: ../FL/x.H ../FL/Fl_Window.H ../FL/Fl_Group.H | |||
| Fluid_Image.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| Fluid_Image.o: ../FL/Fl_Image.H ../FL/Fl_Bitmap.H ../FL/Fl_Pixmap.H | |||
| Fluid_Image.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Tabs.H ../FL/Fl_Pack.H | |||
| Fluid_Image.o: ../FL/Fl_Group.H ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| Fluid_Image.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H ../FL/Fl_Choice.H | |||
| Fluid_Image.o: ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| Fluid_Image.o: ../FL/Fl_Menu_Bar.H ../src/flstring.h ../FL/Fl_Export.H | |||
| Fluid_Image.o: ../config.h ../FL/filename.H ../FL/Fl_File_Chooser.H | |||
| Fluid_Image.o: ../FL/Fl_Double_Window.H ../FL/Fl_Button.H | |||
| Fluid_Image.o: ../FL/Fl_Preferences.H ../FL/Fl_Tile.H ../FL/Fl_File_Browser.H | |||
| Fluid_Image.o: ../FL/Fl_Browser.H ../FL/Fl_Browser_.H ../FL/Fl_Scrollbar.H | |||
| Fluid_Image.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/Fl_File_Icon.H | |||
| Fluid_Image.o: ../FL/Fl.H ../FL/filename.H ../FL/Fl_Box.H | |||
| Fluid_Image.o: ../FL/Fl_Check_Button.H ../FL/Fl_Light_Button.H | |||
| Fluid_Image.o: ../FL/Fl_Button.H ../FL/Fl_File_Input.H | |||
| Fluid_Image.o: ../FL/Fl_Return_Button.H ../FL/fl_ask.H | |||
| about_panel.o: about_panel.h ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H | |||
| about_panel.o: ../FL/fl_types.h ../FL/Xutf8.h ../FL/Enumerations.H | |||
| about_panel.o: ../FL/Fl_Double_Window.H ../FL/Fl_Window.H ../FL/Fl_Group.H | |||
| about_panel.o: ../FL/Fl_Widget.H ../FL/Fl_Box.H ../FL/Fl_Button.H | |||
| about_panel.o: ../FL/Fl_Return_Button.H ../FL/Fl_Button.H ../FL/Fl_Pixmap.H | |||
| about_panel.o: ../FL/Fl_Image.H | |||
| align_widget.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| align_widget.o: ../FL/Xutf8.h ../FL/Enumerations.H ../FL/Fl_Window.H | |||
| align_widget.o: Fl_Widget_Type.h Fl_Type.h ../FL/Fl_Widget.H ../FL/Fl_Menu.H | |||
| align_widget.o: ../FL/Fl_Menu_Item.H ../FL/Fl_Widget.H ../FL/Fl_Image.H | |||
| align_widget.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H Fluid_Image.h | |||
| align_widget.o: ../FL/Fl_Shared_Image.H ../FL/fl_draw.H ../FL/x.H | |||
| align_widget.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Enumerations.H | |||
| align_widget.o: ../FL/Fl_Device.H ../FL/Fl_Image.H ../FL/Fl_Bitmap.H | |||
| align_widget.o: ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H ../FL/Fl_Tabs.H | |||
| align_widget.o: ../FL/Fl_Pack.H ../FL/Fl_Group.H ../FL/Fl_Wizard.H | |||
| align_widget.o: ../FL/Fl_Menu_.H ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H | |||
| align_widget.o: ../FL/Fl_Choice.H ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H | |||
| align_widget.o: ../FL/Fl_Input_.H ../FL/Fl_Menu_Bar.H undo.h | |||
| alignment_panel.o: alignment_panel.h ../FL/Fl.H ../FL/fl_utf8.h | |||
| alignment_panel.o: ../FL/Fl_Export.H ../FL/fl_types.h ../FL/Xutf8.h | |||
| alignment_panel.o: ../FL/Enumerations.H ../FL/Fl_Text_Buffer.H | |||
| alignment_panel.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H ../FL/x.H | |||
| alignment_panel.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Fl_Widget.H | |||
| alignment_panel.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| alignment_panel.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H ../FL/Fl_Image.H | |||
| alignment_panel.o: ../FL/Fl_Bitmap.H ../FL/Fl_Image.H ../FL/Fl_Pixmap.H | |||
| alignment_panel.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Scrollbar.H | |||
| alignment_panel.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H | |||
| alignment_panel.o: ../FL/Fl_Text_Buffer.H ../FL/filename.H | |||
| alignment_panel.o: ../FL/Fl_Double_Window.H ../FL/Fl_Preferences.H | |||
| alignment_panel.o: ../FL/Fl_Tooltip.H ../FL/Fl_Widget.H ../FL/Fl_Button.H | |||
| alignment_panel.o: ../FL/Fl_Tabs.H ../FL/Fl_Group.H ../FL/Fl_Box.H | |||
| alignment_panel.o: ../FL/Fl_Input.H ../FL/Fl_Input_.H ../FL/Fl_Check_Button.H | |||
| alignment_panel.o: ../FL/Fl_Light_Button.H ../FL/Fl_Button.H | |||
| alignment_panel.o: ../FL/Fl_Choice.H ../FL/Fl_Menu_.H ../FL/Fl_Menu_Item.H | |||
| alignment_panel.o: ../FL/Fl_Int_Input.H ../FL/Fl_Input.H ../FL/Fl_Spinner.H | |||
| alignment_panel.o: ../FL/Fl_Repeat_Button.H ../FL/Fl.H | |||
| alignment_panel.o: ../FL/Fl_Return_Button.H ../FL/Fl_Round_Button.H | |||
| alignment_panel.o: ../FL/fl_ask.H | |||
| code.o: ../src/flstring.h ../FL/Fl_Export.H ../config.h ../FL/Fl.H | |||
| code.o: ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h ../FL/Xutf8.h | |||
| code.o: ../FL/Enumerations.H Fl_Type.h ../FL/Fl_Widget.H ../FL/Fl_Menu.H | |||
| code.o: ../FL/Fl_Menu_Item.H ../FL/Fl_Widget.H ../FL/Fl_Image.H | |||
| code.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H Fluid_Image.h | |||
| code.o: ../FL/Fl_Shared_Image.H ../FL/fl_draw.H ../FL/x.H ../FL/Fl_Window.H | |||
| code.o: ../FL/Fl_Group.H ../FL/Enumerations.H ../FL/Fl_Window.H | |||
| code.o: ../FL/Fl_Device.H ../FL/Fl_Image.H ../FL/Fl_Bitmap.H | |||
| code.o: ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H ../FL/Fl_Tabs.H | |||
| code.o: ../FL/Fl_Pack.H ../FL/Fl_Group.H ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| code.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H ../FL/Fl_Choice.H | |||
| code.o: ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| code.o: ../FL/Fl_Menu_Bar.H alignment_panel.h ../FL/Fl_Text_Buffer.H | |||
| code.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H ../FL/Fl_Scrollbar.H | |||
| code.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/Fl_Text_Buffer.H | |||
| code.o: ../FL/filename.H ../FL/Fl_Double_Window.H ../FL/Fl_Preferences.H | |||
| code.o: ../FL/Fl_Tooltip.H ../FL/Fl_Button.H ../FL/Fl_Box.H | |||
| code.o: ../FL/Fl_Check_Button.H ../FL/Fl_Light_Button.H ../FL/Fl_Button.H | |||
| code.o: ../FL/Fl_Int_Input.H ../FL/Fl_Input.H ../FL/Fl_Spinner.H | |||
| code.o: ../FL/Fl_Repeat_Button.H ../FL/Fl.H ../FL/Fl_Return_Button.H | |||
| code.o: ../FL/Fl_Round_Button.H | |||
| factory.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| factory.o: ../FL/Xutf8.h ../FL/Enumerations.H ../FL/Fl_Group.H | |||
| factory.o: ../FL/Fl_Menu_Item.H ../FL/Fl_Widget.H ../FL/Fl_Image.H | |||
| factory.o: ../FL/Fl_Pixmap.H ../FL/Fl_Tree.H ../FL/Fl_Scrollbar.H | |||
| factory.o: ../FL/fl_draw.H ../FL/x.H ../FL/Fl_Window.H ../FL/Fl_Group.H | |||
| factory.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| factory.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H ../FL/Fl_Image.H | |||
| factory.o: ../FL/Fl_Bitmap.H ../FL/Fl_RGB_Image.H ../FL/Fl_Tree_Item.H | |||
| factory.o: ../FL/Fl_Widget.H ../FL/Fl_Tree_Item_Array.H ../FL/Fl_Tree_Prefs.H | |||
| factory.o: ../src/flstring.h ../FL/Fl_Export.H ../config.h undo.h | |||
| factory.o: Fl_Widget_Type.h Fl_Type.h ../FL/Fl_Menu.H ../FL/Fl_Menu_Item.H | |||
| factory.o: Fluid_Image.h ../FL/Fl_Shared_Image.H ../FL/Fl_Tabs.H | |||
| factory.o: ../FL/Fl_Pack.H ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| factory.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H ../FL/Fl_Choice.H | |||
| factory.o: ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| factory.o: ../FL/Fl_Menu_Bar.H ../FL/Fl_Box.H ../FL/Fl_Button.H | |||
| factory.o: ../FL/Fl_Return_Button.H ../FL/Fl_Button.H | |||
| factory.o: ../FL/Fl_Repeat_Button.H ../FL/Fl.H ../FL/Fl_Light_Button.H | |||
| factory.o: ../FL/Fl_Check_Button.H ../FL/Fl_Light_Button.H | |||
| factory.o: ../FL/Fl_Round_Button.H ../FL/Fl_Browser.H ../FL/Fl_Browser_.H | |||
| factory.o: ../FL/Fl_Scrollbar.H ../FL/Fl_Slider.H ../FL/Fl_Valuator.H | |||
| factory.o: ../FL/Fl_Check_Browser.H ../FL/Fl_File_Browser.H | |||
| factory.o: ../FL/Fl_Browser.H ../FL/Fl_File_Icon.H ../FL/filename.H | |||
| factory.o: ../FL/Fl_Counter.H ../FL/Fl_Spinner.H ../FL/Fl_File_Input.H | |||
| factory.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H ../FL/Fl_Text_Buffer.H | |||
| factory.o: ../FL/Fl_Text_Editor.H ../FL/Fl_Text_Display.H | |||
| factory.o: ../FL/Fl_Help_View.H ../FL/Fl_Shared_Image.H ../FL/Fl_Progress.H | |||
| factory.o: ../FL/Fl_Adjuster.H ../FL/Fl_Dial.H ../FL/Fl_Roller.H | |||
| factory.o: ../FL/Fl_Output.H ../FL/Fl_Input.H ../FL/Fl_Value_Input.H | |||
| factory.o: ../FL/Fl_Value_Output.H ../FL/Fl_Value_Slider.H | |||
| factory.o: ../FL/Fl_Multi_Label.H | |||
| file.o: ../src/flstring.h ../FL/Fl_Export.H ../config.h alignment_panel.h | |||
| file.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| file.o: ../FL/Xutf8.h ../FL/Enumerations.H ../FL/Fl_Text_Buffer.H | |||
| file.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H ../FL/x.H ../FL/Fl_Window.H | |||
| file.o: ../FL/Fl_Group.H ../FL/Fl_Widget.H ../FL/Enumerations.H | |||
| file.o: ../FL/Fl_Window.H ../FL/Fl_Device.H ../FL/Fl_Plugin.H | |||
| file.o: ../FL/Fl_Preferences.H ../FL/Fl_Image.H ../FL/Fl_Bitmap.H | |||
| file.o: ../FL/Fl_Image.H ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H | |||
| file.o: ../FL/Fl_Scrollbar.H ../FL/Fl_Slider.H ../FL/Fl_Valuator.H | |||
| file.o: ../FL/Fl_Text_Buffer.H ../FL/filename.H ../FL/Fl_Double_Window.H | |||
| file.o: ../FL/Fl_Preferences.H ../FL/Fl_Tooltip.H ../FL/Fl_Widget.H | |||
| file.o: ../FL/Fl_Button.H ../FL/Fl_Tabs.H ../FL/Fl_Group.H ../FL/Fl_Box.H | |||
| file.o: ../FL/Fl_Input.H ../FL/Fl_Input_.H ../FL/Fl_Check_Button.H | |||
| file.o: ../FL/Fl_Light_Button.H ../FL/Fl_Button.H ../FL/Fl_Choice.H | |||
| file.o: ../FL/Fl_Menu_.H ../FL/Fl_Menu_Item.H ../FL/Fl_Int_Input.H | |||
| file.o: ../FL/Fl_Input.H ../FL/Fl_Spinner.H ../FL/Fl_Repeat_Button.H | |||
| file.o: ../FL/Fl.H ../FL/Fl_Return_Button.H ../FL/Fl_Round_Button.H | |||
| file.o: ../FL/fl_message.H ../FL/fl_ask.H Fl_Widget_Type.h Fl_Type.h | |||
| file.o: ../FL/Fl_Menu.H Fluid_Image.h ../FL/Fl_Shared_Image.H ../FL/fl_draw.H | |||
| file.o: ../FL/Fl_Pack.H ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H | |||
| file.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Input_Choice.H ../FL/Fl_Menu_Bar.H | |||
| fluid.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| fluid.o: ../FL/Xutf8.h ../FL/Enumerations.H ../FL/Fl_Double_Window.H | |||
| fluid.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Fl_Widget.H ../FL/Fl_Box.H | |||
| fluid.o: ../FL/Fl_Button.H ../FL/Fl_File_Icon.H ../FL/Fl.H | |||
| fluid.o: ../FL/Fl_Help_Dialog.H ../FL/Fl_Group.H ../FL/Fl_Input.H | |||
| fluid.o: ../FL/Fl_Input_.H ../FL/Fl_Help_View.H ../FL/Fl_Scrollbar.H | |||
| fluid.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/fl_draw.H ../FL/x.H | |||
| fluid.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| fluid.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H ../FL/Fl_Image.H | |||
| fluid.o: ../FL/Fl_Bitmap.H ../FL/Fl_Image.H ../FL/Fl_Pixmap.H | |||
| fluid.o: ../FL/Fl_RGB_Image.H ../FL/Fl_Shared_Image.H ../FL/filename.H | |||
| fluid.o: ../FL/Fl_Hold_Browser.H ../FL/Fl_Browser.H ../FL/Fl_Browser_.H | |||
| fluid.o: ../FL/Fl_Menu_Bar.H ../FL/Fl_Menu_.H ../FL/Fl_Menu_Item.H | |||
| fluid.o: ../FL/fl_ask.H ../FL/fl_draw.H ../FL/Fl_File_Chooser.H | |||
| fluid.o: ../FL/Fl_Choice.H ../FL/Fl_Menu_Button.H ../FL/Fl_Preferences.H | |||
| fluid.o: ../FL/Fl_Tile.H ../FL/Fl_File_Browser.H ../FL/Fl_File_Icon.H | |||
| fluid.o: ../FL/Fl_Check_Button.H ../FL/Fl_Light_Button.H ../FL/Fl_Button.H | |||
| fluid.o: ../FL/Fl_File_Input.H ../FL/Fl_Return_Button.H ../FL/Fl_PNG_Image.H | |||
| fluid.o: ../FL/fl_message.H ../FL/fl_ask.H ../FL/filename.H ../src/flstring.h | |||
| fluid.o: ../FL/Fl_Export.H ../config.h alignment_panel.h | |||
| fluid.o: ../FL/Fl_Text_Buffer.H ../FL/Fl_Text_Display.H | |||
| fluid.o: ../FL/Fl_Text_Buffer.H ../FL/Fl_Tooltip.H ../FL/Fl_Widget.H | |||
| fluid.o: ../FL/Fl_Tabs.H ../FL/Fl_Int_Input.H ../FL/Fl_Input.H | |||
| fluid.o: ../FL/Fl_Spinner.H ../FL/Fl_Repeat_Button.H ../FL/Fl_Round_Button.H | |||
| fluid.o: function_panel.h ../FL/Fl_Light_Button.H ../FL/Fl_Text_Editor.H | |||
| fluid.o: ../FL/Fl_Text_Display.H CodeEditor.h template_panel.h | |||
| fluid.o: ../FL/Fl_Browser.H print_panel.cxx print_panel.h ../FL/Fl_Progress.H | |||
| fluid.o: about_panel.h undo.h Fl_Type.h ../FL/Fl_Menu.H Fluid_Image.h | |||
| fluid.o: ../FL/Fl_Shared_Image.H ../FL/Fl_Pack.H ../FL/Fl_Wizard.H | |||
| fluid.o: ../FL/Fl_Menu_.H ../FL/Fl_Input_Choice.H | |||
| function_panel.o: function_panel.h ../FL/Fl.H ../FL/fl_utf8.h | |||
| function_panel.o: ../FL/Fl_Export.H ../FL/fl_types.h ../FL/Xutf8.h | |||
| function_panel.o: ../FL/Enumerations.H ../FL/Fl_Double_Window.H | |||
| function_panel.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Fl_Widget.H | |||
| function_panel.o: ../FL/Fl_Group.H ../FL/Fl_Choice.H ../FL/Fl_Menu_.H | |||
| function_panel.o: ../FL/Fl_Menu_Item.H ../FL/Fl_Image.H | |||
| function_panel.o: ../FL/Fl_Light_Button.H ../FL/Fl_Box.H ../FL/Fl_Input.H | |||
| function_panel.o: ../FL/Fl_Input_.H ../FL/Fl_Return_Button.H | |||
| function_panel.o: ../FL/Fl_Button.H ../FL/Fl_Button.H ../FL/Fl_Text_Editor.H | |||
| function_panel.o: ../FL/Fl_Text_Display.H ../FL/fl_draw.H ../FL/x.H | |||
| function_panel.o: ../FL/Enumerations.H ../FL/Fl_Window.H ../FL/Fl_Device.H | |||
| function_panel.o: ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H ../FL/Fl_Image.H | |||
| function_panel.o: ../FL/Fl_Bitmap.H ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H | |||
| function_panel.o: ../FL/Fl_Scrollbar.H ../FL/Fl_Slider.H ../FL/Fl_Valuator.H | |||
| function_panel.o: ../FL/Fl_Text_Buffer.H CodeEditor.h ../FL/Fl_Text_Buffer.H | |||
| function_panel.o: ../FL/Fl_Menu_Button.H ../FL/Fl_Tabs.H Fl_Type.h | |||
| function_panel.o: ../FL/Fl_Widget.H ../FL/Fl_Menu.H Fluid_Image.h | |||
| function_panel.o: ../FL/Fl_Shared_Image.H ../FL/fl_draw.H ../FL/Fl_Pack.H | |||
| function_panel.o: ../FL/Fl_Wizard.H ../FL/Fl_Menu_.H ../FL/Fl_Input_Choice.H | |||
| function_panel.o: ../FL/Fl_Menu_Bar.H undo.h | |||
| template_panel.o: template_panel.h ../FL/Fl.H ../FL/fl_utf8.h | |||
| template_panel.o: ../FL/Fl_Export.H ../FL/fl_types.h ../FL/Xutf8.h | |||
| template_panel.o: ../FL/Enumerations.H ../FL/Fl_Double_Window.H | |||
| template_panel.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Fl_Widget.H | |||
| template_panel.o: ../FL/Fl_Browser.H ../FL/Fl_Browser_.H ../FL/Fl_Scrollbar.H | |||
| template_panel.o: ../FL/Fl_Slider.H ../FL/Fl_Valuator.H ../FL/Fl_Image.H | |||
| template_panel.o: ../FL/Fl_Box.H ../FL/Fl_Input.H ../FL/Fl_Input_.H | |||
| template_panel.o: ../FL/Fl_Group.H ../FL/Fl_Button.H ../FL/Fl_Return_Button.H | |||
| template_panel.o: ../FL/Fl_Button.H ../src/flstring.h ../FL/Fl_Export.H | |||
| template_panel.o: ../config.h ../FL/filename.H ../FL/fl_ask.H | |||
| template_panel.o: ../FL/Fl_Shared_Image.H ../FL/Fl_Preferences.H | |||
| undo.o: ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H ../FL/fl_types.h | |||
| undo.o: ../FL/Xutf8.h ../FL/Enumerations.H Fl_Type.h ../FL/Fl_Widget.H | |||
| undo.o: ../FL/Fl_Menu.H ../FL/Fl_Menu_Item.H ../FL/Fl_Widget.H | |||
| undo.o: ../FL/Fl_Image.H ../FL/Fl_Plugin.H ../FL/Fl_Preferences.H | |||
| undo.o: Fluid_Image.h ../FL/Fl_Shared_Image.H ../FL/fl_draw.H ../FL/x.H | |||
| undo.o: ../FL/Fl_Window.H ../FL/Fl_Group.H ../FL/Enumerations.H | |||
| undo.o: ../FL/Fl_Window.H ../FL/Fl_Device.H ../FL/Fl_Image.H | |||
| undo.o: ../FL/Fl_Bitmap.H ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H | |||
| undo.o: ../FL/Fl_Tabs.H ../FL/Fl_Pack.H ../FL/Fl_Group.H ../FL/Fl_Wizard.H | |||
| undo.o: ../FL/Fl_Menu_.H ../FL/Fl_Menu_Button.H ../FL/Fl_Menu_.H | |||
| undo.o: ../FL/Fl_Choice.H ../FL/Fl_Input_Choice.H ../FL/Fl_Input.H | |||
| undo.o: ../FL/Fl_Input_.H ../FL/Fl_Menu_Bar.H undo.h ../FL/Fl_Preferences.H | |||
| undo.o: ../FL/filename.H ../src/flstring.h ../FL/Fl_Export.H ../config.h | |||
| widget_panel.o: widget_panel.h ../FL/Fl.H ../FL/fl_utf8.h ../FL/Fl_Export.H | |||
| widget_panel.o: ../FL/fl_types.h ../FL/Xutf8.h ../FL/Enumerations.H | |||
| widget_panel.o: ../FL/Fl_Double_Window.H ../FL/Fl_Window.H ../FL/Fl_Group.H | |||
| widget_panel.o: ../FL/Fl_Widget.H ../FL/Fl_Tabs.H ../FL/Fl_Group.H | |||
| widget_panel.o: ../FL/Fl_Input.H ../FL/Fl_Input_.H ../FL/Fl_Choice.H | |||
| widget_panel.o: ../FL/Fl_Menu_.H ../FL/Fl_Menu_Item.H ../FL/Fl_Image.H | |||
| widget_panel.o: ../FL/Fl_Button.H ../FL/Fl_Box.H ../FL/Fl_Value_Input.H | |||
| widget_panel.o: ../FL/Fl_Valuator.H ../FL/Fl_Input.H ../FL/Fl_Light_Button.H | |||
| widget_panel.o: Shortcut_Button.h CodeEditor.h ../FL/Fl_Text_Buffer.H | |||
| widget_panel.o: ../FL/Fl_Text_Editor.H ../FL/Fl_Text_Display.H | |||
| widget_panel.o: ../FL/fl_draw.H ../FL/x.H ../FL/Enumerations.H | |||
| widget_panel.o: ../FL/Fl_Window.H ../FL/Fl_Device.H ../FL/Fl_Plugin.H | |||
| widget_panel.o: ../FL/Fl_Preferences.H ../FL/Fl_Image.H ../FL/Fl_Bitmap.H | |||
| widget_panel.o: ../FL/Fl_Pixmap.H ../FL/Fl_RGB_Image.H ../FL/Fl_Scrollbar.H | |||
| widget_panel.o: ../FL/Fl_Slider.H ../FL/Fl_Text_Buffer.H | |||
| widget_panel.o: ../FL/Fl_Return_Button.H ../FL/Fl_Button.H | |||
| @@ -0,0 +1,38 @@ | |||
| #!/usr/bin/env python | |||
| def options(opt): | |||
| pass | |||
| def configure(opt): | |||
| pass | |||
| def build(bld): | |||
| bld.program( source = ''' | |||
| CodeEditor.cxx | |||
| Fl_Function_Type.cxx | |||
| Fl_Group_Type.cxx | |||
| Fl_Menu_Type.cxx | |||
| Fl_Type.cxx | |||
| Fl_Widget_Type.cxx | |||
| Fl_Window_Type.cxx | |||
| Fluid_Image.cxx | |||
| about_panel.cxx | |||
| align_widget.cxx | |||
| alignment_panel.cxx | |||
| code.cxx | |||
| factory.cxx | |||
| file.cxx | |||
| fluid.cxx | |||
| function_panel.cxx | |||
| template_panel.cxx | |||
| undo.cxx | |||
| widget_panel.cxx | |||
| ''', | |||
| target='ntk-fluid', | |||
| includes = [ '.', '../' ], | |||
| use = [ 'ntk', 'ntk_images' ], | |||
| uselib = [ 'X11', 'XFT', 'CAIRO' ], | |||
| install_path = '${BINDIR}' ) | |||
| @@ -1,63 +0,0 @@ | |||
| ------------------------------------------- | |||
| HOW TO USE THE FLTK IDE ENVIRONMENTS | |||
| ------------------------------------------- | |||
| As for today, FLTK 1.3 officially supports | |||
| the following integrated environments (1): | |||
| ------------------------------------------------------------------------ | |||
| distrib subdir | supported products | |||
| ------------------------------------------------------------------------ | |||
| ide/VisualC6 | Microsoft Visual C++ 6 and 2005 (2) | |||
| ide/VisualC2008 | Microsoft Visual C++ 2008 | |||
| ide/VisualC2010 | Microsoft Visual C++ 2010 | |||
| ide/Xcode3 | Apple Xcode 3.x and up | |||
| ide/Xcode4 | Apple Xcode 4.x and up | |||
| Notes : | |||
| ------- | |||
| (1) For *nix platforms based on the autoconf/configure/make toolchain, | |||
| simply run autoconf, then the configure script on the root dir. | |||
| read the ./README file for more info. | |||
| (2) When first using the project file (ide/VisualC6/fltk.dsw) with | |||
| VC++ 2005, you will be asked to convert the project to the newer | |||
| format. | |||
| Further notes about Microsoft IDE project files (December 2010): | |||
| ------------------------------------------------------------------------ | |||
| The FLTK team limits support to the last two releases of any major IDE. | |||
| For Visual Studio, this is currently VisualC 2008 and VisualC 2010. | |||
| Earlier versions of Visual Studio can import the VisualC6 Project file | |||
| to generate a working Solution. | |||
| VisualC2008 and VisualC2010 Solutions were generated with the free | |||
| Visual Studio Express edition of the corresponding version. | |||
| Further notes about Xcode IDE project files (December 2010): | |||
| ------------------------------------------------------------------------ | |||
| The FLTK team limits support to the last two releases of any major IDE. | |||
| Xcode 3 is available from Apple for free. Xcode 4 is available from the | |||
| App Store for a nominal fee, or as part of a paid developer membership | |||
| with Apple. The Xcode3 project targets OS X 10.5, whereas Xcode4 | |||
| targets 10.6. If you wish to develop for a lower version, you will | |||
| need to download the required SDK from Apple and change the target | |||
| SDK. | |||
| Other IDE's and Platforms | |||
| ------------------------------------------------------------------------ | |||
| Code::Blocks supports FLTK project natively. Please compile and install | |||
| FLTK using the Makefile system. Once installed, new FLTK projects | |||
| can be generated using the Code::Blocks IDE. | |||
| Further IDE's can only be supported if a volunteer maintainer is found. | |||
| If you feel that your favourite IDE is missing from our list, we will | |||
| happily add your IDE files and ask you to keep them up to date. | |||
| @@ -1,566 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="CubeView" | |||
| ProjectGUID="{E30BB28D-DFA0-479C-B670-8CD872224B38}" | |||
| RootNamespace="CubeView" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\CubeView__0" | |||
| IntermediateDirectory=".\CubeView__0" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\CubeView__0/CubeView.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\CubeView__0/CubeView.pch" | |||
| AssemblerListingLocation=".\CubeView__0/" | |||
| ObjectFile=".\CubeView__0/" | |||
| ProgramDataBaseFileName=".\CubeView__0/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/CubeViewd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\CubeView__0/CubeViewd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\CubeView___" | |||
| IntermediateDirectory=".\CubeView___" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\CubeView___/CubeView.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\CubeView___/CubeView.pch" | |||
| AssemblerListingLocation=".\CubeView___/" | |||
| ObjectFile=".\CubeView___/" | |||
| ProgramDataBaseFileName=".\CubeView___/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/CubeView.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\CubeView___/CubeView.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\CubeView__0/CubeView.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\CubeView__0/CubeView.pch" | |||
| AssemblerListingLocation=".\CubeView__0/" | |||
| ObjectFile=".\CubeView__0/" | |||
| ProgramDataBaseFileName=".\CubeView__0/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/CubeViewd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\CubeView__0/CubeViewd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\CubeView___/CubeView.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\CubeView___/CubeView.pch" | |||
| AssemblerListingLocation=".\CubeView___/" | |||
| ObjectFile=".\CubeView___/" | |||
| ProgramDataBaseFileName=".\CubeView___/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/CubeView.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\CubeView___/CubeView.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\CubeMain.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\CubeView.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\CubeViewUI.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\CubeViewUI.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid -c $(InputName).fl
" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="adjuster" | |||
| ProjectGUID="{51F6CDA8-3AF3-4DDC-B412-8E5E92F3393B}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\adjuster_" | |||
| IntermediateDirectory=".\adjuster_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\adjuster_/adjuster.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\adjuster_/adjuster.pch" | |||
| AssemblerListingLocation=".\adjuster_/" | |||
| ObjectFile=".\adjuster_/" | |||
| ProgramDataBaseFileName=".\adjuster_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/adjusterd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\adjuster_/adjusterd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/adjuster.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/adjuster.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/adjuster.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/adjuster.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\adjuster_/adjuster.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\adjuster_/adjuster.pch" | |||
| AssemblerListingLocation=".\adjuster_/" | |||
| ObjectFile=".\adjuster_/" | |||
| ProgramDataBaseFileName=".\adjuster_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/adjusterd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\adjuster_/adjusterd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/adjuster.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/adjuster.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/adjuster.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/adjuster.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\adjuster.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="arc" | |||
| ProjectGUID="{39ADA7A1-A2C1-4F0B-8B92-04E335570C27}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\arc_" | |||
| IntermediateDirectory=".\arc_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\arc_/arc.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\arc_/arc.pch" | |||
| AssemblerListingLocation=".\arc_/" | |||
| ObjectFile=".\arc_/" | |||
| ProgramDataBaseFileName=".\arc_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/arcd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\arc_/arcd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/arc.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/arc.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/arc.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/arc.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\arc_/arc.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\arc_/arc.pch" | |||
| AssemblerListingLocation=".\arc_/" | |||
| ObjectFile=".\arc_/" | |||
| ProgramDataBaseFileName=".\arc_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/arcd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\arc_/arcd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/arc.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/arc.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/arc.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/arc.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\arc.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="ask" | |||
| ProjectGUID="{DB6BAA16-C589-448F-9AB5-5969016549EB}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\ask_" | |||
| IntermediateDirectory=".\ask_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\ask_/ask.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\ask_/ask.pch" | |||
| AssemblerListingLocation=".\ask_/" | |||
| ObjectFile=".\ask_/" | |||
| ProgramDataBaseFileName=".\ask_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/askd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\ask_/askd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/ask.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/ask.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/ask.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/ask.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\ask_/ask.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\ask_/ask.pch" | |||
| AssemblerListingLocation=".\ask_/" | |||
| ObjectFile=".\ask_/" | |||
| ProgramDataBaseFileName=".\ask_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/askd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\ask_/askd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/ask.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/ask.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/ask.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/ask.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\ask.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="bitmap" | |||
| ProjectGUID="{65B5BB3F-EE54-4604-B49B-7676AED83AAB}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/bitmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/bitmap.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/bitmap.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/bitmap.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\bitmap_" | |||
| IntermediateDirectory=".\bitmap_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\bitmap_/bitmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\bitmap_/bitmap.pch" | |||
| AssemblerListingLocation=".\bitmap_/" | |||
| ObjectFile=".\bitmap_/" | |||
| ProgramDataBaseFileName=".\bitmap_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/bitmapd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\bitmap_/bitmapd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\bitmap_/bitmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\bitmap_/bitmap.pch" | |||
| AssemblerListingLocation=".\bitmap_/" | |||
| ObjectFile=".\bitmap_/" | |||
| ProgramDataBaseFileName=".\bitmap_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/bitmapd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\bitmap_/bitmapd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/bitmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/bitmap.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/bitmap.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/bitmap.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\bitmap.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="blocks" | |||
| ProjectGUID="{2D92C98B-F186-4BF0-A9D4-51D42C93F6E8}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\blocks_" | |||
| IntermediateDirectory=".\blocks_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\blocks_/blocks.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\blocks_/blocks.pch" | |||
| AssemblerListingLocation=".\blocks_/" | |||
| ObjectFile=".\blocks_/" | |||
| ProgramDataBaseFileName=".\blocks_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib winmm.lib comctl32.lib" | |||
| OutputFile="../../test/blocksd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\blocks_/blocksd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/blocks.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/blocks.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib winmm.lib comctl32.lib" | |||
| OutputFile="../../test/blocks.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/blocks.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\blocks_/blocks.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\blocks_/blocks.pch" | |||
| AssemblerListingLocation=".\blocks_/" | |||
| ObjectFile=".\blocks_/" | |||
| ProgramDataBaseFileName=".\blocks_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib winmm.lib comctl32.lib" | |||
| OutputFile="../../test/blocksd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\blocks_/blocksd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/blocks.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/blocks.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib winmm.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/blocks.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/blocks.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\blocks.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="boxtype" | |||
| ProjectGUID="{E212D4B4-63D9-4D8D-84DB-45C8BC191462}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\boxtype_" | |||
| IntermediateDirectory=".\boxtype_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\boxtype_/boxtype.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\boxtype_/boxtype.pch" | |||
| AssemblerListingLocation=".\boxtype_/" | |||
| ObjectFile=".\boxtype_/" | |||
| ProgramDataBaseFileName=".\boxtype_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/boxtyped.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\boxtype_/boxtyped.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/boxtype.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/boxtype.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/boxtype.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/boxtype.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\boxtype_/boxtype.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\boxtype_/boxtype.pch" | |||
| AssemblerListingLocation=".\boxtype_/" | |||
| ObjectFile=".\boxtype_/" | |||
| ProgramDataBaseFileName=".\boxtype_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/boxtyped.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\boxtype_/boxtyped.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/boxtype.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/boxtype.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/boxtype.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/boxtype.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\boxtype.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="browser" | |||
| ProjectGUID="{2352F92C-8663-4637-B919-D76F0A9EC05E}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/browser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/browser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/browser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\browser_" | |||
| IntermediateDirectory=".\browser_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\browser_/browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\browser_/browser.pch" | |||
| AssemblerListingLocation=".\browser_/" | |||
| ObjectFile=".\browser_/" | |||
| ProgramDataBaseFileName=".\browser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/browserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\browser_/browserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\browser_/browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\browser_/browser.pch" | |||
| AssemblerListingLocation=".\browser_/" | |||
| ObjectFile=".\browser_/" | |||
| ProgramDataBaseFileName=".\browser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/browserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\browser_/browserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/browser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/browser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/browser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\browser.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="button" | |||
| ProjectGUID="{0363AC35-F325-4C24-9DB9-E83337D55787}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\button_" | |||
| IntermediateDirectory=".\button_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\button_/button.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\button_/button.pch" | |||
| AssemblerListingLocation=".\button_/" | |||
| ObjectFile=".\button_/" | |||
| ProgramDataBaseFileName=".\button_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/buttond.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\button_/buttond.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/button.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/button.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/button.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/button.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\button_/button.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\button_/button.pch" | |||
| AssemblerListingLocation=".\button_/" | |||
| ObjectFile=".\button_/" | |||
| ProgramDataBaseFileName=".\button_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/buttond.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\button_/buttond.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/button.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/button.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/button.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/button.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\button.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="buttons" | |||
| ProjectGUID="{67CE1C24-B0C0-4CD6-8D0F-68513C2398B9}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/buttons.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/buttons.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/buttons.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/buttons.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\buttons_" | |||
| IntermediateDirectory=".\buttons_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\buttons_/buttons.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\buttons_/buttons.pch" | |||
| AssemblerListingLocation=".\buttons_/" | |||
| ObjectFile=".\buttons_/" | |||
| ProgramDataBaseFileName=".\buttons_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/buttonsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\buttons_/buttonsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\buttons_/buttons.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\buttons_/buttons.pch" | |||
| AssemblerListingLocation=".\buttons_/" | |||
| ObjectFile=".\buttons_/" | |||
| ProgramDataBaseFileName=".\buttons_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/buttonsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\buttons_/buttonsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/buttons.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/buttons.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/buttons.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/buttons.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\buttons.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,439 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="cairo_test" | |||
| ProjectGUID="{CF98E92E-C789-47E6-A2DA-398EB7991A2B}" | |||
| RootNamespace="cairo_test" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/cairo_test.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| PrecompiledHeaderFile=".\Release/cairo_test.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/cairo_test.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/cairo_test.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| SuppressStartupBanner="true" | |||
| OutputFile=".\Release/cairo_test.bsc" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\cairo_test_" | |||
| IntermediateDirectory=".\cairo_test_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\cairo_test_/cairo_test.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| MinimalRebuild="true" | |||
| RuntimeLibrary="3" | |||
| PrecompiledHeaderFile=".\cairo_test_/cairo_test.pch" | |||
| AssemblerListingLocation=".\cairo_test_/" | |||
| ObjectFile=".\cairo_test_/" | |||
| ProgramDataBaseFileName=".\cairo_test_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="4" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/cairo_testd.exe" | |||
| LinkIncremental="2" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\cairo_test_/cairo_testd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| SuppressStartupBanner="true" | |||
| OutputFile=".\cairo_test_/cairo_test.bsc" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\cairo_test_/cairo_test.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| MinimalRebuild="true" | |||
| RuntimeLibrary="3" | |||
| PrecompiledHeaderFile=".\cairo_test_/cairo_test.pch" | |||
| AssemblerListingLocation=".\cairo_test_/" | |||
| ObjectFile=".\cairo_test_/" | |||
| ProgramDataBaseFileName=".\cairo_test_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="4" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/cairo_testd.exe" | |||
| LinkIncremental="2" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\cairo_test_/cairo_testd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| SuppressStartupBanner="true" | |||
| OutputFile=".\cairo_test_/cairo_test.bsc" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC60.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/cairo_test.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| PrecompiledHeaderFile=".\Release/cairo_test.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltk.lib comctl32.lib" | |||
| OutputFile="../../test/cairo_test.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/cairo_test.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| SuppressStartupBanner="true" | |||
| OutputFile=".\Release/cairo_test.bsc" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\cairo_test.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,13 +0,0 @@ | |||
| @echo off | |||
| echo Compiling fluid files ... | |||
| pushd . | |||
| cd ../../test | |||
| if "%1"=="/D" goto debugmode | |||
| ..\fluid\fluid -c "%1" | |||
| goto end | |||
| :debugmode: | |||
| ..\fluid\fluidd -c "%2" | |||
| :end | |||
| popd | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="checkers" | |||
| ProjectGUID="{92EEF887-8305-4D00-86B7-D3F98CC7AD87}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\checkers_" | |||
| IntermediateDirectory=".\checkers_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\checkers_/checkers.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\checkers_/checkers.pch" | |||
| AssemblerListingLocation=".\checkers_/" | |||
| ObjectFile=".\checkers_/" | |||
| ProgramDataBaseFileName=".\checkers_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/checkersd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\checkers_/checkersd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/checkers.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/checkers.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/checkers.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/checkers.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\checkers_/checkers.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\checkers_/checkers.pch" | |||
| AssemblerListingLocation=".\checkers_/" | |||
| ObjectFile=".\checkers_/" | |||
| ProgramDataBaseFileName=".\checkers_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/checkersd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\checkers_/checkersd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/checkers.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/checkers.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/checkers.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/checkers.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\checkers.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="clock" | |||
| ProjectGUID="{122160ED-446E-4B15-8CB4-A2058DC7269A}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\clock_" | |||
| IntermediateDirectory=".\clock_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\clock_/clock.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\clock_/clock.pch" | |||
| AssemblerListingLocation=".\clock_/" | |||
| ObjectFile=".\clock_/" | |||
| ProgramDataBaseFileName=".\clock_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/clockd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\clock_/clockd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/clock.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/clock.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/clock.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/clock.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\clock_/clock.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\clock_/clock.pch" | |||
| AssemblerListingLocation=".\clock_/" | |||
| ObjectFile=".\clock_/" | |||
| ProgramDataBaseFileName=".\clock_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/clockd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\clock_/clockd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/clock.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/clock.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/clock.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/clock.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\clock.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="colbrowser" | |||
| ProjectGUID="{D0BC7525-99E7-4247-B860-1B3CF2FF8165}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/colbrowser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/colbrowser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/colbrowser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/colbrowser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\colbrowser_" | |||
| IntermediateDirectory=".\colbrowser_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\colbrowser_/colbrowser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\colbrowser_/colbrowser.pch" | |||
| AssemblerListingLocation=".\colbrowser_/" | |||
| ObjectFile=".\colbrowser_/" | |||
| ProgramDataBaseFileName=".\colbrowser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/colbrowserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\colbrowser_/colbrowserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\colbrowser_/colbrowser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\colbrowser_/colbrowser.pch" | |||
| AssemblerListingLocation=".\colbrowser_/" | |||
| ObjectFile=".\colbrowser_/" | |||
| ProgramDataBaseFileName=".\colbrowser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/colbrowserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\colbrowser_/colbrowserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/colbrowser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/colbrowser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/colbrowser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/colbrowser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\colbrowser.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,434 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="color_chooser" | |||
| ProjectGUID="{BDACB9FC-6769-4A2D-A636-36CC25E3AC75}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\color_chooser_" | |||
| IntermediateDirectory=".\color_chooser_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\color_chooser_/color_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\color_chooser_/color_chooser.pch" | |||
| AssemblerListingLocation=".\color_chooser_/" | |||
| ObjectFile=".\color_chooser_/" | |||
| ProgramDataBaseFileName=".\color_chooser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/color_chooserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\color_chooser_/color_chooserd.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/color_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/color_chooser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/color_chooser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/color_chooser.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\color_chooser_/color_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\color_chooser_/color_chooser.pch" | |||
| AssemblerListingLocation=".\color_chooser_/" | |||
| ObjectFile=".\color_chooser_/" | |||
| ProgramDataBaseFileName=".\color_chooser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/color_chooserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\color_chooser_/color_chooserd.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/color_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/color_chooser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/color_chooser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/color_chooser.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\color_chooser.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,204 +0,0 @@ | |||
| /* | |||
| * "$Id: config.h 4454 2005-07-24 18:41:30Z matt $" | |||
| * | |||
| * Configuration file for the Fast Light Tool Kit (FLTK) for Visual C++. | |||
| * | |||
| * Copyright 1998-2010 by Bill Spitzak and others. | |||
| * | |||
| * This library is free software; you can redistribute it and/or | |||
| * modify it under the terms of the GNU Library General Public | |||
| * License as published by the Free Software Foundation; either | |||
| * version 2 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 | |||
| * Library General Public License for more details. | |||
| * | |||
| * You should have received a copy of the GNU Library General Public | |||
| * License along with this library; if not, write to the Free Software | |||
| * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | |||
| * USA. | |||
| * | |||
| * Please report all bugs and problems on the following page: | |||
| * | |||
| * http://www.fltk.org/str.php | |||
| */ | |||
| /* | |||
| * Where to find files... | |||
| */ | |||
| #define FLTK_DATADIR "C:/FLTK" | |||
| #define FLTK_DOCDIR "C:/FLTK/DOC" | |||
| /* | |||
| * BORDER_WIDTH: | |||
| * | |||
| * Thickness of FL_UP_BOX and FL_DOWN_BOX. Current 1,2, and 3 are | |||
| * supported. 3 is the historic FLTK look. 2 looks more like Microsoft | |||
| * Windows, KDE, and Qt, and is the default when building for Windows. | |||
| * 1 is a plausible future evolution... Note that this may be simulated | |||
| * at runtime by redefining the boxtypes using Fl::set_boxtype(). | |||
| */ | |||
| #define BORDER_WIDTH 2 | |||
| /* | |||
| * HAVE_GL: | |||
| * | |||
| * Do you have OpenGL? Set this to 0 if you don't have or plan to use | |||
| * OpenGL, and FLTK will be smaller. | |||
| */ | |||
| #define HAVE_GL 1 | |||
| /* | |||
| * HAVE_GL_GLU_H: | |||
| * | |||
| * Do you have the OpenGL Utility Library header file? | |||
| * (many broken Mesa RPMs do not...) | |||
| */ | |||
| #define HAVE_GL_GLU_H 1 | |||
| /* | |||
| * USE_COLORMAP: | |||
| * | |||
| * Setting this to zero will save a good deal of code (especially for | |||
| * fl_draw_image), but FLTK will only work on TrueColor visuals. | |||
| */ | |||
| #define USE_COLORMAP 1 | |||
| /* | |||
| * HAVE_XDBE: | |||
| * | |||
| * Do we have the X double-buffer extension? | |||
| */ | |||
| #define HAVE_XDBE 0 | |||
| /* | |||
| * USE_XDBE: | |||
| * | |||
| * Actually try to use the double-buffer extension? Set this to zero | |||
| * disable use of XDBE without breaking the list_visuals program. | |||
| */ | |||
| #define USE_XDBE HAVE_XDBE | |||
| /* | |||
| * HAVE_OVERLAY: | |||
| * | |||
| * Use the X overlay extension? FLTK will try to use an overlay | |||
| * visual for Fl_Overlay_Window, the Gl_Window overlay, and for the | |||
| * menus. Setting this to zero will remove a substantial amount of | |||
| * code from FLTK. Overlays have only been tested on SGI servers! | |||
| */ | |||
| #define HAVE_OVERLAY 0 | |||
| /* | |||
| * HAVE_GL_OVERLAY: | |||
| * | |||
| * It is possible your GL has an overlay even if X does not. If so, | |||
| * set this to 1. | |||
| */ | |||
| #define HAVE_GL_OVERLAY 1 | |||
| /* | |||
| * WORDS_BIGENDIAN: | |||
| * | |||
| * Byte order of your machine: 1 = big-endian, 0 = little-endian. | |||
| */ | |||
| #define WORDS_BIGENDIAN 0 | |||
| /* | |||
| * U16, U32, U64: | |||
| * | |||
| * Types used by fl_draw_image. One of U32 or U64 must be defined. | |||
| * U16 is optional but FLTK will work better with it! | |||
| */ | |||
| #define U16 unsigned short | |||
| #define U32 unsigned | |||
| #undef U64 | |||
| /* | |||
| * HAVE_DIRENT_H, HAVE_SYS_NDIR_H, HAVE_SYS_DIR_H, HAVE_NDIR_H, HAVE_SCANDIR: | |||
| * | |||
| * Where is <dirent.h> (used only by fl_file_chooser and scandir). | |||
| */ | |||
| /*#undef HAVE_DIRENT_H */ | |||
| /*#undef HAVE_SYS_NDIR_H */ | |||
| /*#undef HAVE_SYS_DIR_H */ | |||
| /*#undef HAVE_NDIR_H */ | |||
| /*#undef HAVE_SCANDIR */ | |||
| /* | |||
| * Possibly missing sprintf-style functions: | |||
| */ | |||
| #undef HAVE_VSNPRINTF | |||
| #undef HAVE_SNPRINTF | |||
| /* | |||
| * String functions... | |||
| */ | |||
| #define HAVE_STRCASECMP 1 | |||
| /*#undef HAVE_STRLCAT*/ | |||
| /*#undef HAVE_STRLCPY*/ | |||
| /* | |||
| * Do we have POSIX locale support? | |||
| */ | |||
| #define HAVE_LOCALE_H 1 | |||
| #define HAVE_LOCALECONV 1 | |||
| /* | |||
| * HAVE_POLL: | |||
| * | |||
| * Use poll() if we don't have select(). | |||
| */ | |||
| #define HAVE_POLL 0 | |||
| /* | |||
| * Do we have various image libraries? | |||
| */ | |||
| #define HAVE_LIBPNG | |||
| #define HAVE_LIBZ | |||
| #define HAVE_LIBJPEG | |||
| /* | |||
| * Do we have Cairo ? | |||
| */ | |||
| // uncomment the following for using cairo | |||
| // #define FLTK_HAVE_CAIRO 1 | |||
| /* | |||
| * Which header file do we include for libpng? | |||
| */ | |||
| #define HAVE_PNG_H | |||
| #undef HAVE_LIBPNG_PNG_H | |||
| /* | |||
| * Do we have the png_xyz() functions? | |||
| */ | |||
| #define HAVE_PNG_GET_VALID | |||
| #define HAVE_PNG_SET_TRNS_TO_ALPHA | |||
| /* | |||
| * End of "$Id: config.h 4454 2005-07-24 18:41:30Z matt $". | |||
| */ | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="cube" | |||
| ProjectGUID="{0973844B-3E5F-4C38-95FF-E8935243D287}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/cube.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/cube.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/cube.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/cube.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\cube_" | |||
| IntermediateDirectory=".\cube_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\cube_/cube.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\cube_/cube.pch" | |||
| AssemblerListingLocation=".\cube_/" | |||
| ObjectFile=".\cube_/" | |||
| ProgramDataBaseFileName=".\cube_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/cubed.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\cube_/cubed.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\cube_/cube.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\cube_/cube.pch" | |||
| AssemblerListingLocation=".\cube_/" | |||
| ObjectFile=".\cube_/" | |||
| ProgramDataBaseFileName=".\cube_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/cubed.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\cube_/cubed.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/cube.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/cube.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/cube.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/cube.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\cube.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="cursor" | |||
| ProjectGUID="{0D1DB0EE-E997-4550-85D4-BDE209B75AD6}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\cursor_" | |||
| IntermediateDirectory=".\cursor_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\cursor_/cursor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\cursor_/cursor.pch" | |||
| AssemblerListingLocation=".\cursor_/" | |||
| ObjectFile=".\cursor_/" | |||
| ProgramDataBaseFileName=".\cursor_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/cursord.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\cursor_/cursord.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/cursor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/cursor.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/cursor.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/cursor.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\cursor_/cursor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\cursor_/cursor.pch" | |||
| AssemblerListingLocation=".\cursor_/" | |||
| ObjectFile=".\cursor_/" | |||
| ProgramDataBaseFileName=".\cursor_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib comctl32.lib" | |||
| OutputFile="../../test/cursord.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\cursor_/cursord.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/cursor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/cursor.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/cursor.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/cursor.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\cursor.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="curve" | |||
| ProjectGUID="{27D45BA6-A403-4A71-B6D6-57DC0CEDCE15}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\curve_" | |||
| IntermediateDirectory=".\curve_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\curve_/curve.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\curve_/curve.pch" | |||
| AssemblerListingLocation=".\curve_/" | |||
| ObjectFile=".\curve_/" | |||
| ProgramDataBaseFileName=".\curve_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/curved.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\curve_/curved.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/curve.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/curve.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/curve.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/curve.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\curve_/curve.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\curve_/curve.pch" | |||
| AssemblerListingLocation=".\curve_/" | |||
| ObjectFile=".\curve_/" | |||
| ProgramDataBaseFileName=".\curve_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/curved.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\curve_/curved.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/curve.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/curve.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/curve.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/curve.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\curve.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="demo" | |||
| ProjectGUID="{09427220-8C9C-498A-8D50-1638D3FB87E5}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/demo.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/demo.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/demo.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/demo.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\demo_" | |||
| IntermediateDirectory=".\demo_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\demo_/demo.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\demo_/demo.pch" | |||
| AssemblerListingLocation=".\demo_/" | |||
| ObjectFile=".\demo_/" | |||
| ProgramDataBaseFileName=".\demo_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/demod.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\demo_/demod.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\demo_/demo.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\demo_/demo.pch" | |||
| AssemblerListingLocation=".\demo_/" | |||
| ObjectFile=".\demo_/" | |||
| ProgramDataBaseFileName=".\demo_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib comctl32.lib" | |||
| OutputFile="../../test/demod.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\demo_/demod.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/demo.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/demo.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/demo.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/demo.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\demo.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="device" | |||
| ProjectGUID="{2B3BD00C-1A32-4764-AE20-C03B3EDDBD50}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/device.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/device.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/device.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/device.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\device_" | |||
| IntermediateDirectory=".\device_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\device_/device.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\device_/device.pch" | |||
| AssemblerListingLocation=".\device_/" | |||
| ObjectFile=".\device_/" | |||
| ProgramDataBaseFileName=".\device_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/deviced.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\device_/deviced.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\device_/device.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\device_/device.pch" | |||
| AssemblerListingLocation=".\device_/" | |||
| ObjectFile=".\device_/" | |||
| ProgramDataBaseFileName=".\device_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/deviced.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\device_/deviced.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/device.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/device.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/device.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/device.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\device.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="doublebuffer" | |||
| ProjectGUID="{EDDBF169-77C1-496E-9EFE-E500107E6E97}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\doublebuffer_" | |||
| IntermediateDirectory=".\doublebuffer_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\doublebuffer_/doublebuffer.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\doublebuffer_/doublebuffer.pch" | |||
| AssemblerListingLocation=".\doublebuffer_/" | |||
| ObjectFile=".\doublebuffer_/" | |||
| ProgramDataBaseFileName=".\doublebuffer_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/doublebufferd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\doublebuffer_/doublebufferd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/doublebuffer.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/doublebuffer.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/doublebuffer.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/doublebuffer.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\doublebuffer_/doublebuffer.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\doublebuffer_/doublebuffer.pch" | |||
| AssemblerListingLocation=".\doublebuffer_/" | |||
| ObjectFile=".\doublebuffer_/" | |||
| ProgramDataBaseFileName=".\doublebuffer_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/doublebufferd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\doublebuffer_/doublebufferd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/doublebuffer.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/doublebuffer.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/doublebuffer.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/doublebuffer.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\doublebuffer.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,442 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="editor" | |||
| ProjectGUID="{0BDAEBF1-7A8D-434B-A543-4663464E972D}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory="..\..\test" | |||
| IntermediateDirectory=".\Release\editor" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/editor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/editor.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/editor.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/editor.pdb" | |||
| SubSystem="2" | |||
| EntryPointSymbol="mainCRTStartup" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory="..\..\test" | |||
| IntermediateDirectory=".\Debug\editor" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\editor_/editor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\editor_/editor.pch" | |||
| AssemblerListingLocation=".\editor_/" | |||
| ObjectFile=".\editor_/" | |||
| ProgramDataBaseFileName=".\editor_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/editord.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\editor_/editord.pdb" | |||
| SubSystem="2" | |||
| EntryPointSymbol="mainCRTStartup" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\editor_/editor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\editor_/editor.pch" | |||
| AssemblerListingLocation=".\editor_/" | |||
| ObjectFile=".\editor_/" | |||
| ProgramDataBaseFileName=".\editor_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/editord.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\editor_/editord.pdb" | |||
| SubSystem="2" | |||
| EntryPointSymbol="mainCRTStartup" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/editor.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".,../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/editor.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltk.lib comctl32.lib" | |||
| OutputFile="../../test/editor.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/editor.pdb" | |||
| SubSystem="2" | |||
| EntryPointSymbol="mainCRTStartup" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\editor.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,482 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="fast_slow" | |||
| ProjectGUID="{2D29D6C9-B4A6-444C-A311-106A9C8A986F}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\fast_slow_" | |||
| IntermediateDirectory=".\fast_slow_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fast_slow_/fast_slow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fast_slow_/fast_slow.pch" | |||
| AssemblerListingLocation=".\fast_slow_/" | |||
| ObjectFile=".\fast_slow_/" | |||
| ProgramDataBaseFileName=".\fast_slow_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/fast_slowd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fast_slow_/fast_slowd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fast_slow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fast_slow.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/fast_slow.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fast_slow.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fast_slow_/fast_slow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fast_slow_/fast_slow.pch" | |||
| AssemblerListingLocation=".\fast_slow_/" | |||
| ObjectFile=".\fast_slow_/" | |||
| ProgramDataBaseFileName=".\fast_slow_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/fast_slowd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fast_slow_/fast_slowd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fast_slow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fast_slow.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/fast_slow.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fast_slow.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\fast_slow.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\fast_slow.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="file_chooser" | |||
| ProjectGUID="{6927F349-29DF-4D60-BC8F-5A3F5E133735}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\file_chooser_" | |||
| IntermediateDirectory=".\file_chooser_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\file_chooser_/file_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\file_chooser_/file_chooser.pch" | |||
| AssemblerListingLocation=".\file_chooser_/" | |||
| ObjectFile=".\file_chooser_/" | |||
| ProgramDataBaseFileName=".\file_chooser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib" | |||
| OutputFile="../../test/file_chooserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmtd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\file_chooser_/file_chooserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/file_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/file_chooser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib" | |||
| OutputFile="../../test/file_chooser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmt" | |||
| ProgramDatabaseFile=".\Release/file_chooser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\file_chooser_/file_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\file_chooser_/file_chooser.pch" | |||
| AssemblerListingLocation=".\file_chooser_/" | |||
| ObjectFile=".\file_chooser_/" | |||
| ProgramDataBaseFileName=".\file_chooser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/file_chooserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmtd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\file_chooser_/file_chooserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/file_chooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/file_chooser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib cairo.lib" | |||
| OutputFile="../../test/file_chooser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmt" | |||
| ProgramDatabaseFile=".\Release/file_chooser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\file_chooser.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,585 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="fltkforms" | |||
| ProjectGUID="{C17BAB42-F00B-4F71-9DF6-A921511C89EE}" | |||
| RootNamespace="fltkforms" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fltkforms.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkforms.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\Debug" | |||
| IntermediateDirectory=".\Debug" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/fltkforms.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| BrowseInformation="1" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkformsd.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/fltkforms.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| BrowseInformation="1" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkformsd.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fltkforms.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkforms.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\src\forms_bitmap.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\forms_compatability.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\forms_free.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\forms_fselect.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\forms_pixmap.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\forms_timer.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,651 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="fltkgl" | |||
| ProjectGUID="{F7974A9C-C255-4385-96BC-E24EE0816F7C}" | |||
| RootNamespace="fltkgl" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;..\.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fltkgl.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkgl.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\Debug" | |||
| IntermediateDirectory=".\Debug" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;..\.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/fltkgl.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| BrowseInformation="1" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkgld.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;..\.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/fltkgl.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| BrowseInformation="1" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkgld.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;..\.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fltkgl.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkgl.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\src\Fl_Gl_Choice.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_Gl_Device_Plugin.cxx" | |||
| > | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_Gl_Overlay.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_Gl_Window.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\freeglut_geometry.cxx" | |||
| > | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\freeglut_stroke_mono_roman.cxx" | |||
| > | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\freeglut_stroke_roman.cxx" | |||
| > | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\freeglut_teapot.cxx" | |||
| > | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\gl_draw.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\gl_start.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\glut_compatability.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\glut_font.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,677 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="fltkimages" | |||
| ProjectGUID="{6E8E1663-B88D-4454-ADF2-279666A93306}" | |||
| RootNamespace="fltkimages" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\Debug" | |||
| IntermediateDirectory=".\Debug" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/fltkimages.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| BrowseInformation="1" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkimagesd.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fltkimages.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkimages.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/fltkimages.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| BrowseInformation="1" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkimagesd.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;FL_LIBRARY;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fltkimages.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkimages.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\src\Fl_BMP_Image.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_File_Icon2.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_GIF_Image.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_Help_Dialog.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\fl_images_core.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_JPEG_Image.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_PNG_Image.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\src\Fl_PNM_Image.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| BrowseInformation="1" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="fonts" | |||
| ProjectGUID="{DF2A883A-7356-4603-9CB1-E8F1E6B1549D}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\fonts_" | |||
| IntermediateDirectory=".\fonts_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fonts_/fonts.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fonts_/fonts.pch" | |||
| AssemblerListingLocation=".\fonts_/" | |||
| ObjectFile=".\fonts_/" | |||
| ProgramDataBaseFileName=".\fonts_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/fontsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fonts_/fontsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fonts.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fonts.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/fonts.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fonts.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fonts_/fonts.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fonts_/fonts.pch" | |||
| AssemblerListingLocation=".\fonts_/" | |||
| ObjectFile=".\fonts_/" | |||
| ProgramDataBaseFileName=".\fonts_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/fontsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fonts_/fontsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fonts.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fonts.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/fonts.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fonts.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\fonts.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="forms" | |||
| ProjectGUID="{B1749154-F87B-489D-B4B0-ABD5ED20A96F}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\forms_" | |||
| IntermediateDirectory=".\forms_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\forms_/forms.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\forms_/forms.pch" | |||
| AssemblerListingLocation=".\forms_/" | |||
| ObjectFile=".\forms_/" | |||
| ProgramDataBaseFileName=".\forms_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/formsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\forms_/formsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/forms.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/forms.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/forms.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/forms.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\forms_/forms.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\forms_/forms.pch" | |||
| AssemblerListingLocation=".\forms_/" | |||
| ObjectFile=".\forms_/" | |||
| ProgramDataBaseFileName=".\forms_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/formsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\forms_/formsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/forms.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/forms.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/forms.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/forms.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\forms.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,480 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="fractals" | |||
| ProjectGUID="{58A83386-65E6-4F22-8712-8B6B7E62913D}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\fractals_" | |||
| IntermediateDirectory=".\fractals_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fractals_/fractals.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fractals_/fractals.pch" | |||
| AssemblerListingLocation=".\fractals_/" | |||
| ObjectFile=".\fractals_/" | |||
| ProgramDataBaseFileName=".\fractals_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/fractalsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fractals_/fractalsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fractals.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fractals.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/fractals.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fractals.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fractals_/fractals.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1; _CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fractals_/fractals.pch" | |||
| AssemblerListingLocation=".\fractals_/" | |||
| ObjectFile=".\fractals_/" | |||
| ProgramDataBaseFileName=".\fractals_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/fractalsd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fractals_/fractalsd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fractals.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fractals.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/fractals.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fractals.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\fractals.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\fracviewer.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="fullscreen" | |||
| ProjectGUID="{2147B9FD-7D65-4854-9770-D7B8767DB9AE}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\fullscreen_" | |||
| IntermediateDirectory=".\fullscreen_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fullscreen_/fullscreen.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fullscreen_/fullscreen.pch" | |||
| AssemblerListingLocation=".\fullscreen_/" | |||
| ObjectFile=".\fullscreen_/" | |||
| ProgramDataBaseFileName=".\fullscreen_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib glu32.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/fullscreend.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fullscreen_/fullscreend.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fullscreen.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fullscreen.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib glu32.lib fltk.lib comctl32.lib" | |||
| OutputFile="../../test/fullscreen.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fullscreen.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\fullscreen_/fullscreen.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\fullscreen_/fullscreen.pch" | |||
| AssemblerListingLocation=".\fullscreen_/" | |||
| ObjectFile=".\fullscreen_/" | |||
| ProgramDataBaseFileName=".\fullscreen_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib opengl32.lib glu32.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/fullscreend.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\fullscreen_/fullscreend.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/fullscreen.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/fullscreen.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib glu32.lib fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/fullscreen.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/fullscreen.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\fullscreen.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="gl_overlay" | |||
| ProjectGUID="{8D8D210D-F628-48BB-9127-D8003DF22018}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/gl_overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/gl_overlay.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/gl_overlay.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/gl_overlay.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\gl_overlay_" | |||
| IntermediateDirectory=".\gl_overlay_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\gl_overlay_/gl_overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\gl_overlay_/gl_overlay.pch" | |||
| AssemblerListingLocation=".\gl_overlay_/" | |||
| ObjectFile=".\gl_overlay_/" | |||
| ProgramDataBaseFileName=".\gl_overlay_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/gl_overlayd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\gl_overlay_/gl_overlayd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\gl_overlay_/gl_overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\gl_overlay_/gl_overlay.pch" | |||
| AssemblerListingLocation=".\gl_overlay_/" | |||
| ObjectFile=".\gl_overlay_/" | |||
| ProgramDataBaseFileName=".\gl_overlay_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/gl_overlayd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\gl_overlay_/gl_overlayd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/gl_overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/gl_overlay.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/gl_overlay.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/gl_overlay.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\gl_overlay.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="glpuzzle" | |||
| ProjectGUID="{BFE8CC78-6B58-4305-A096-796A3088BB26}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\glpuzzle_" | |||
| IntermediateDirectory=".\glpuzzle_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\glpuzzle_/glpuzzle.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\glpuzzle_/glpuzzle.pch" | |||
| AssemblerListingLocation=".\glpuzzle_/" | |||
| ObjectFile=".\glpuzzle_/" | |||
| ProgramDataBaseFileName=".\glpuzzle_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/glpuzzled.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\glpuzzle_/glpuzzled.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/glpuzzle.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/glpuzzle.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/glpuzzle.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/glpuzzle.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\glpuzzle_/glpuzzle.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\glpuzzle_/glpuzzle.pch" | |||
| AssemblerListingLocation=".\glpuzzle_/" | |||
| ObjectFile=".\glpuzzle_/" | |||
| ProgramDataBaseFileName=".\glpuzzle_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib glu32.lib opengl32.lib comctl32.lib" | |||
| OutputFile="../../test/glpuzzled.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\glpuzzle_/glpuzzled.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/glpuzzle.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/glpuzzle.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/glpuzzle.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/glpuzzle.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\glpuzzle.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="hello" | |||
| ProjectGUID="{ADA2462A-3656-41D2-B8A8-8D942AA0F8E9}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\hello_" | |||
| IntermediateDirectory=".\hello_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\hello_/hello.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\hello_/hello.pch" | |||
| AssemblerListingLocation=".\hello_/" | |||
| ObjectFile=".\hello_/" | |||
| ProgramDataBaseFileName=".\hello_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/hellod.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\hello_/hellod.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/hello.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/hello.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/hello.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/hello.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\hello_/hello.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\hello_/hello.pch" | |||
| AssemblerListingLocation=".\hello_/" | |||
| ObjectFile=".\hello_/" | |||
| ProgramDataBaseFileName=".\hello_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/hellod.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\hello_/hellod.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/hello.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/hello.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/hello.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/hello.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\hello.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="help" | |||
| ProjectGUID="{9F3F86DA-3CC5-481F-8201-166933B5C8FF}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/help.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/help.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib" | |||
| OutputFile="../../test/help.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmt" | |||
| ProgramDatabaseFile=".\Release/help.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\help_" | |||
| IntermediateDirectory=".\help_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\help_/help.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\help_/help.pch" | |||
| AssemblerListingLocation=".\help_/" | |||
| ObjectFile=".\help_/" | |||
| ProgramDataBaseFileName=".\help_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib" | |||
| OutputFile="../../test/helpd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmtd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\help_/helpd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\help_/help.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\help_/help.pch" | |||
| AssemblerListingLocation=".\help_/" | |||
| ObjectFile=".\help_/" | |||
| ProgramDataBaseFileName=".\help_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib comctl32.lib" | |||
| OutputFile="../../test/helpd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmtd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\help_/helpd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/help.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/help.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib cairo.lib" | |||
| OutputFile="../../test/help.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmt" | |||
| ProgramDatabaseFile=".\Release/help.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\help.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="iconize" | |||
| ProjectGUID="{37C32832-DCE4-4BAA-9306-826064B30CCB}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\iconize_" | |||
| IntermediateDirectory=".\iconize_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\iconize_/iconize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\iconize_/iconize.pch" | |||
| AssemblerListingLocation=".\iconize_/" | |||
| ObjectFile=".\iconize_/" | |||
| ProgramDataBaseFileName=".\iconize_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/iconized.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\iconize_/iconized.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/iconize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/iconize.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/iconize.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/iconize.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\iconize_/iconize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\iconize_/iconize.pch" | |||
| AssemblerListingLocation=".\iconize_/" | |||
| ObjectFile=".\iconize_/" | |||
| ProgramDataBaseFileName=".\iconize_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/iconized.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\iconize_/iconized.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/iconize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/iconize.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/iconize.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/iconize.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\iconize.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="image" | |||
| ProjectGUID="{3322F289-B025-4DB1-A7D1-FBA3840F8A0B}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/image.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/image.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/image.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/image.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\image_" | |||
| IntermediateDirectory=".\image_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\image_/image.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\image_/image.pch" | |||
| AssemblerListingLocation=".\image_/" | |||
| ObjectFile=".\image_/" | |||
| ProgramDataBaseFileName=".\image_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/imaged.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\image_/imaged.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\image_/image.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1; _CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\image_/image.pch" | |||
| AssemblerListingLocation=".\image_/" | |||
| ObjectFile=".\image_/" | |||
| ProgramDataBaseFileName=".\image_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/imaged.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\image_/imaged.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/image.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/image.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/image.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/image.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\image.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,481 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="inactive" | |||
| ProjectGUID="{B5271094-DE51-4E60-B4FA-D8F0BDB969FE}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\inactive_" | |||
| IntermediateDirectory=".\inactive_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\inactive_/inactive.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\inactive_/inactive.pch" | |||
| AssemblerListingLocation=".\inactive_/" | |||
| ObjectFile=".\inactive_/" | |||
| ProgramDataBaseFileName=".\inactive_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/inactived.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\inactive_/inactived.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/inactive.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/inactive.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/inactive.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/inactive.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\inactive_/inactive.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\inactive_/inactive.pch" | |||
| AssemblerListingLocation=".\inactive_/" | |||
| ObjectFile=".\inactive_/" | |||
| ProgramDataBaseFileName=".\inactive_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/inactived.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\inactive_/inactived.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/inactive.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/inactive.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/inactive.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/inactive.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\inactive.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\inactive.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid -c $(InputName).fl
" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="input" | |||
| ProjectGUID="{1C1B5A00-5F5D-4290-A07B-8A5A4A78570A}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/input.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/input.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/input.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/input.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\input_" | |||
| IntermediateDirectory=".\input_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\input_/input.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\input_/input.pch" | |||
| AssemblerListingLocation=".\input_/" | |||
| ObjectFile=".\input_/" | |||
| ProgramDataBaseFileName=".\input_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/inputd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\input_/inputd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\input_/input.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\input_/input.pch" | |||
| AssemblerListingLocation=".\input_/" | |||
| ObjectFile=".\input_/" | |||
| ProgramDataBaseFileName=".\input_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/inputd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\input_/inputd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/input.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/input.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/input.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/input.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\input.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="input_choice" | |||
| ProjectGUID="{50651D04-C8F7-4C2B-B412-0848573BDF88}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\input_choice_" | |||
| IntermediateDirectory=".\input_choice_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\input_choice_/input_choice.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\input_choice_/input_choice.pch" | |||
| AssemblerListingLocation=".\input_choice_/" | |||
| ObjectFile=".\input_choice_/" | |||
| ProgramDataBaseFileName=".\input_choice_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/input_choiced.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\input_choice_/input_choiced.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/input_choice.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/input_choice.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/input_choice.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/input_choice.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\input_choice_/input_choice.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\input_choice_/input_choice.pch" | |||
| AssemblerListingLocation=".\input_choice_/" | |||
| ObjectFile=".\input_choice_/" | |||
| ProgramDataBaseFileName=".\input_choice_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/input_choiced.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\input_choice_/input_choiced.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/input_choice.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/input_choice.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/input_choice.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/input_choice.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\input_choice.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,524 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="keyboard" | |||
| ProjectGUID="{4DFA9F84-0457-4FE4-8008-283270610487}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/keyboard.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/keyboard.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/keyboard.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/keyboard.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\keyboard_" | |||
| IntermediateDirectory=".\keyboard_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\keyboard_/keyboard.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\keyboard_/keyboard.pch" | |||
| AssemblerListingLocation=".\keyboard_/" | |||
| ObjectFile=".\keyboard_/" | |||
| ProgramDataBaseFileName=".\keyboard_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/keyboardd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\keyboard_/keyboardd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\keyboard_/keyboard.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\keyboard_/keyboard.pch" | |||
| AssemblerListingLocation=".\keyboard_/" | |||
| ObjectFile=".\keyboard_/" | |||
| ProgramDataBaseFileName=".\keyboard_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/keyboardd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\keyboard_/keyboardd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/keyboard.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/keyboard.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/keyboard.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/keyboard.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\keyboard.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\keyboard_ui.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\keyboard_ui.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="label" | |||
| ProjectGUID="{C3E7B77C-EED2-4046-9A30-9446C6F096A0}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\label_" | |||
| IntermediateDirectory=".\label_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\label_/label.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\label_/label.pch" | |||
| AssemblerListingLocation=".\label_/" | |||
| ObjectFile=".\label_/" | |||
| ProgramDataBaseFileName=".\label_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/labeld.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\label_/labeld.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/label.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/label.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/label.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/label.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\label_/label.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\label_/label.pch" | |||
| AssemblerListingLocation=".\label_/" | |||
| ObjectFile=".\label_/" | |||
| ProgramDataBaseFileName=".\label_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/labeld.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\label_/labeld.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/label.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/label.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/label.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/label.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\label.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,968 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="libpng" | |||
| ProjectGUID="{D640A221-F95A-40FF-AC0E-0E8B615C7681}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/libpng.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| WarningLevel="3" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkpng.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\Debug" | |||
| IntermediateDirectory=".\Debug" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/libpng.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkpngd.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Debug/libpng.pch" | |||
| AssemblerListingLocation=".\Debug/" | |||
| ObjectFile=".\Debug/" | |||
| ProgramDataBaseFileName=".\Debug/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkpngd.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="4" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/libpng.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| WarningLevel="3" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLibrarianTool" | |||
| OutputFile="..\..\lib\fltkpng.lib" | |||
| SuppressStartupBanner="true" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\png\png.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngerror.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngget.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngmem.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngpread.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngread.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngrio.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngrtran.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngrutil.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngset.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngtrans.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngwio.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngwrite.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngwtran.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\png\pngwutil.c" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| FavorSizeOrSpeed="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="line_style" | |||
| ProjectGUID="{8B25CCE0-0988-4999-AE65-5A5EE31BB44D}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/line_style.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/line_style.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/line_style.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/line_style.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\line_style_" | |||
| IntermediateDirectory=".\line_style_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\line_style_/line_style.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\line_style_/line_style.pch" | |||
| AssemblerListingLocation=".\line_style_/" | |||
| ObjectFile=".\line_style_/" | |||
| ProgramDataBaseFileName=".\line_style_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/line_styled.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\line_style_/line_styled.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\line_style_/line_style.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\line_style_/line_style.pch" | |||
| AssemblerListingLocation=".\line_style_/" | |||
| ObjectFile=".\line_style_/" | |||
| ProgramDataBaseFileName=".\line_style_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/line_styled.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\line_style_/line_styled.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/line_style.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/line_style.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/line_style.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/line_style.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\line_style.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,524 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="mandelbrot" | |||
| ProjectGUID="{7BBECC0F-9381-4BF2-87CA-3FD1DA93DEAF}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\mandelbrot_" | |||
| IntermediateDirectory=".\mandelbrot_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\mandelbrot_/mandelbrot.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\mandelbrot_/mandelbrot.pch" | |||
| AssemblerListingLocation=".\mandelbrot_/" | |||
| ObjectFile=".\mandelbrot_/" | |||
| ProgramDataBaseFileName=".\mandelbrot_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/mandelbrotd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\mandelbrot_/mandelbrotd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/mandelbrot.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/mandelbrot.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib fltk.lib comctl32.lib" | |||
| OutputFile="../../test/mandelbrot.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/mandelbrot.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\mandelbrot_/mandelbrot.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\mandelbrot_/mandelbrot.pch" | |||
| AssemblerListingLocation=".\mandelbrot_/" | |||
| ObjectFile=".\mandelbrot_/" | |||
| ProgramDataBaseFileName=".\mandelbrot_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib glu32.lib opengl32.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/mandelbrotd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\mandelbrot_/mandelbrotd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/mandelbrot.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/mandelbrot.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="glu32.lib opengl32.lib fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/mandelbrot.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/mandelbrot.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\mandelbrot.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\mandelbrot_ui.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\mandelbrot_ui.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,434 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="menubar" | |||
| ProjectGUID="{78079B1F-152B-4E83-87CB-364586AB3AAC}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\menubar_" | |||
| IntermediateDirectory=".\menubar_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\menubar_/menubar.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\menubar_/menubar.pch" | |||
| AssemblerListingLocation=".\menubar_/" | |||
| ObjectFile=".\menubar_/" | |||
| ProgramDataBaseFileName=".\menubar_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/menubard.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\menubar_/menubard.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/menubar.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/menubar.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/menubar.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/menubar.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\menubar_/menubar.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\menubar_/menubar.pch" | |||
| AssemblerListingLocation=".\menubar_/" | |||
| ObjectFile=".\menubar_/" | |||
| ProgramDataBaseFileName=".\menubar_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/menubard.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\menubar_/menubard.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/menubar.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/menubar.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/menubar.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/menubar.pdb" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\menubar.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="message" | |||
| ProjectGUID="{E1A8934E-CB8D-4F74-B78A-EC7952BC4CBE}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\message_" | |||
| IntermediateDirectory=".\message_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\message_/message.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\message_/message.pch" | |||
| AssemblerListingLocation=".\message_/" | |||
| ObjectFile=".\message_/" | |||
| ProgramDataBaseFileName=".\message_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/messaged.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\message_/messaged.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/message.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/message.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/message.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/message.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\message_/message.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\message_/message.pch" | |||
| AssemblerListingLocation=".\message_/" | |||
| ObjectFile=".\message_/" | |||
| ProgramDataBaseFileName=".\message_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/messaged.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\message_/messaged.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/message.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/message.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/message.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/message.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\message.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="minimum" | |||
| ProjectGUID="{F658ABE4-7FE1-4404-9B7C-55E0D660F1B3}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/minimum.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/minimum.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/minimum.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/minimum.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\minimum_" | |||
| IntermediateDirectory=".\minimum_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\minimum_/minimum.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\minimum_/minimum.pch" | |||
| AssemblerListingLocation=".\minimum_/" | |||
| ObjectFile=".\minimum_/" | |||
| ProgramDataBaseFileName=".\minimum_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/minimumd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\minimum_/minimumd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\minimum_/minimum.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\minimum_/minimum.pch" | |||
| AssemblerListingLocation=".\minimum_/" | |||
| ObjectFile=".\minimum_/" | |||
| ProgramDataBaseFileName=".\minimum_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/minimumd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\minimum_/minimumd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/minimum.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/minimum.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/minimum.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/minimum.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\minimum.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="native-filechooser" | |||
| ProjectGUID="{314273B6-8478-475E-881D-1F5A294AFED6}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/native-filechooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/native-filechooser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/native-filechooser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/native-filechooser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\native-filechooser_" | |||
| IntermediateDirectory=".\native-filechooser_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\native-filechooser_/native-filechooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\native-filechooser_/native-filechooser.pch" | |||
| AssemblerListingLocation=".\native-filechooser_/" | |||
| ObjectFile=".\native-filechooser_/" | |||
| ProgramDataBaseFileName=".\native-filechooser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/native-filechooserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\native-filechooser_/native-filechooserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\native-filechooser_/native-filechooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\native-filechooser_/native-filechooser.pch" | |||
| AssemblerListingLocation=".\native-filechooser_/" | |||
| ObjectFile=".\native-filechooser_/" | |||
| ProgramDataBaseFileName=".\native-filechooser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/native-filechooserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\native-filechooser_/native-filechooserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/native-filechooser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/native-filechooser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/native-filechooser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/native-filechooser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\native-filechooser.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="navigation" | |||
| ProjectGUID="{AA0ED6EA-2DA3-4486-AFBD-76CC9D206A1E}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/navigation.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/navigation.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/navigation.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/navigation.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\navigation_" | |||
| IntermediateDirectory=".\navigation_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\navigation_/navigation.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\navigation_/navigation.pch" | |||
| AssemblerListingLocation=".\navigation_/" | |||
| ObjectFile=".\navigation_/" | |||
| ProgramDataBaseFileName=".\navigation_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/navigationd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\navigation_/navigationd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\navigation_/navigation.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\navigation_/navigation.pch" | |||
| AssemblerListingLocation=".\navigation_/" | |||
| ObjectFile=".\navigation_/" | |||
| ProgramDataBaseFileName=".\navigation_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/navigationd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\navigation_/navigationd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/navigation.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/navigation.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/navigation.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/navigation.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\navigation.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="output" | |||
| ProjectGUID="{1CA77C94-5785-4B38-B91A-1EAFBD885BC2}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/output.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/output.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/output.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/output.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\output_" | |||
| IntermediateDirectory=".\output_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\output_/output.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\output_/output.pch" | |||
| AssemblerListingLocation=".\output_/" | |||
| ObjectFile=".\output_/" | |||
| ProgramDataBaseFileName=".\output_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/outputd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\output_/outputd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\output_/output.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\output_/output.pch" | |||
| AssemblerListingLocation=".\output_/" | |||
| ObjectFile=".\output_/" | |||
| ProgramDataBaseFileName=".\output_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/outputd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\output_/outputd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/output.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/output.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/output.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/output.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\output.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="overlay" | |||
| ProjectGUID="{3B0BF144-5D75-4D4A-BF75-7347186C808F}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\overlay_" | |||
| IntermediateDirectory=".\overlay_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\overlay_/overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\overlay_/overlay.pch" | |||
| AssemblerListingLocation=".\overlay_/" | |||
| ObjectFile=".\overlay_/" | |||
| ProgramDataBaseFileName=".\overlay_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/overlayd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\overlay_/overlayd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/overlay.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/overlay.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/overlay.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\overlay_/overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\overlay_/overlay.pch" | |||
| AssemblerListingLocation=".\overlay_/" | |||
| ObjectFile=".\overlay_/" | |||
| ProgramDataBaseFileName=".\overlay_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/overlayd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\overlay_/overlayd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/overlay.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/overlay.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/overlay.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/overlay.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\overlay.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="pack" | |||
| ProjectGUID="{CEB7B88B-3AA5-4DD6-818F-CF19E12BF1E1}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\pack_" | |||
| IntermediateDirectory=".\pack_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\pack_/pack.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\pack_/pack.pch" | |||
| AssemblerListingLocation=".\pack_/" | |||
| ObjectFile=".\pack_/" | |||
| ProgramDataBaseFileName=".\pack_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/packd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\pack_/packd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/pack.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/pack.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/pack.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/pack.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\pack_/pack.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\pack_/pack.pch" | |||
| AssemblerListingLocation=".\pack_/" | |||
| ObjectFile=".\pack_/" | |||
| ProgramDataBaseFileName=".\pack_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/packd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\pack_/packd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/pack.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/pack.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/pack.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/pack.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\pack.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="pixmap" | |||
| ProjectGUID="{1CD667DD-E7AE-4F36-A1F7-F41FB59786BE}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/pixmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/pixmap.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/pixmap.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/pixmap.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\pixmap_" | |||
| IntermediateDirectory=".\pixmap_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\pixmap_/pixmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\pixmap_/pixmap.pch" | |||
| AssemblerListingLocation=".\pixmap_/" | |||
| ObjectFile=".\pixmap_/" | |||
| ProgramDataBaseFileName=".\pixmap_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/pixmapd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\pixmap_/pixmapd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\pixmap_/pixmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\pixmap_/pixmap.pch" | |||
| AssemblerListingLocation=".\pixmap_/" | |||
| ObjectFile=".\pixmap_/" | |||
| ProgramDataBaseFileName=".\pixmap_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/pixmapd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\pixmap_/pixmapd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/pixmap.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/pixmap.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/pixmap.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/pixmap.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\pixmap.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="pixmap_browser" | |||
| ProjectGUID="{289C605C-94CC-437F-836B-2FE41528EEEC}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\pixmap_browser_" | |||
| IntermediateDirectory=".\pixmap_browser_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\pixmap_browser_/pixmap_browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\pixmap_browser_/pixmap_browser.pch" | |||
| AssemblerListingLocation=".\pixmap_browser_/" | |||
| ObjectFile=".\pixmap_browser_/" | |||
| ProgramDataBaseFileName=".\pixmap_browser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib" | |||
| OutputFile="../../test/pixmap_browserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmtd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\pixmap_browser_/pixmap_browserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/pixmap_browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/pixmap_browser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib" | |||
| OutputFile="../../test/pixmap_browser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmt" | |||
| ProgramDatabaseFile=".\Release/pixmap_browser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\pixmap_browser_/pixmap_browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\pixmap_browser_/pixmap_browser.pch" | |||
| AssemblerListingLocation=".\pixmap_browser_/" | |||
| ObjectFile=".\pixmap_browser_/" | |||
| ProgramDataBaseFileName=".\pixmap_browser_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib comctl32.lib" | |||
| OutputFile="../../test/pixmap_browserd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmtd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\pixmap_browser_/pixmap_browserd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/pixmap_browser.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/pixmap_browser.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="comctl32.lib cairo.lib" | |||
| OutputFile="../../test/pixmap_browser.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcmt" | |||
| ProgramDatabaseFile=".\Release/pixmap_browser.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\pixmap_browser.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,482 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="preferences" | |||
| ProjectGUID="{D04E36D7-1C68-43E6-BE30-A7793CE3C799}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\preferences_" | |||
| IntermediateDirectory=".\preferences_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\preferences_/preferences.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\preferences_/preferences.pch" | |||
| AssemblerListingLocation=".\preferences_/" | |||
| ObjectFile=".\preferences_/" | |||
| ProgramDataBaseFileName=".\preferences_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/preferencesd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\preferences_/preferencesd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/preferences.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/preferences.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/preferences.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/preferences.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\preferences_/preferences.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\preferences_/preferences.pch" | |||
| AssemblerListingLocation=".\preferences_/" | |||
| ObjectFile=".\preferences_/" | |||
| ProgramDataBaseFileName=".\preferences_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/preferencesd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\preferences_/preferencesd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/preferences.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/preferences.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/preferences.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/preferences.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\preferences.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\preferences.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="..\..\test\$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,482 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="radio" | |||
| ProjectGUID="{AD5ACED4-F6EE-4AC0-B502-23CFD10EF603}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/radio.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/radio.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/radio.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/radio.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\radio_" | |||
| IntermediateDirectory=".\radio_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\radio_/radio.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\radio_/radio.pch" | |||
| AssemblerListingLocation=".\radio_/" | |||
| ObjectFile=".\radio_/" | |||
| ProgramDataBaseFileName=".\radio_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/radiod.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\radio_/radiod.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\radio_/radio.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\radio_/radio.pch" | |||
| AssemblerListingLocation=".\radio_/" | |||
| ObjectFile=".\radio_/" | |||
| ProgramDataBaseFileName=".\radio_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/radiod.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\radio_/radiod.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/radio.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/radio.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/radio.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/radio.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\radio.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\radio.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,482 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="resize" | |||
| ProjectGUID="{46771042-C840-4314-BA3C-C5BC2FBD7CBB}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\resize_" | |||
| IntermediateDirectory=".\resize_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\resize_/resize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\resize_/resize.pch" | |||
| AssemblerListingLocation=".\resize_/" | |||
| ObjectFile=".\resize_/" | |||
| ProgramDataBaseFileName=".\resize_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/resized.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\resize_/resized.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/resize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/resize.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/resize.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/resize.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\resize_/resize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\resize_/resize.pch" | |||
| AssemblerListingLocation=".\resize_/" | |||
| ObjectFile=".\resize_/" | |||
| ProgramDataBaseFileName=".\resize_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/resized.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\resize_/resized.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/resize.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/resize.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/resize.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/resize.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\resize.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\resize.fl" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluidd" | |||
| CommandLine="cfluid /D $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| Description="Create .cxx and .h file with fluid" | |||
| CommandLine="cfluid $(InputName).fl
" | |||
| Outputs="../../test/$(InputName).cxx" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="resizebox" | |||
| ProjectGUID="{2E03AF33-56A1-4366-B016-184CD96F3B56}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\resizebox_" | |||
| IntermediateDirectory=".\resizebox_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\resizebox_/resizebox.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\resizebox_/resizebox.pch" | |||
| AssemblerListingLocation=".\resizebox_/" | |||
| ObjectFile=".\resizebox_/" | |||
| ProgramDataBaseFileName=".\resizebox_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/resizeboxd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\resizebox_/resizeboxd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/resizebox.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/resizebox.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/resizebox.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/resizebox.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\resizebox_/resizebox.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\resizebox_/resizebox.pch" | |||
| AssemblerListingLocation=".\resizebox_/" | |||
| ObjectFile=".\resizebox_/" | |||
| ProgramDataBaseFileName=".\resizebox_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/resizeboxd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\resizebox_/resizeboxd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/resizebox.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/resizebox.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/resizebox.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/resizebox.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\resizebox.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="rotated_text" | |||
| ProjectGUID="{E88CCAF5-5DB9-4A46-8C91-97C5697F167A}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\rotated_text_" | |||
| IntermediateDirectory=".\rotated_text_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\rotated_text_/rotated_text.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\rotated_text_/rotated_text.pch" | |||
| AssemblerListingLocation=".\rotated_text_/" | |||
| ObjectFile=".\rotated_text_/" | |||
| ProgramDataBaseFileName=".\rotated_text_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/rotated_textd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\rotated_text_/rotated_textd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/rotated_text.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/rotated_text.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/rotated_text.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/rotated_text.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\rotated_text_/rotated_text.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\rotated_text_/rotated_text.pch" | |||
| AssemblerListingLocation=".\rotated_text_/" | |||
| ObjectFile=".\rotated_text_/" | |||
| ProgramDataBaseFileName=".\rotated_text_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/rotated_textd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\rotated_text_/rotated_textd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/rotated_text.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/rotated_text.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/rotated_text.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/rotated_text.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\rotated_text.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="scroll" | |||
| ProjectGUID="{97541B63-87AA-4ACE-BBF5-175F8D1389EC}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/scroll.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/scroll.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/scroll.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/scroll.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\scroll_" | |||
| IntermediateDirectory=".\scroll_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\scroll_/scroll.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\scroll_/scroll.pch" | |||
| AssemblerListingLocation=".\scroll_/" | |||
| ObjectFile=".\scroll_/" | |||
| ProgramDataBaseFileName=".\scroll_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/scrolld.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\scroll_/scrolld.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\scroll_/scroll.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\scroll_/scroll.pch" | |||
| AssemblerListingLocation=".\scroll_/" | |||
| ObjectFile=".\scroll_/" | |||
| ProgramDataBaseFileName=".\scroll_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/scrolld.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\scroll_/scrolld.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/scroll.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/scroll.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/scroll.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/scroll.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\scroll.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="shape" | |||
| ProjectGUID="{45797F58-624B-4FA0-A7A3-5956114D8215}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/shape.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/shape.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib fltk.lib comctl32.lib" | |||
| OutputFile="../../test/shape.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/shape.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\shape_" | |||
| IntermediateDirectory=".\shape_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\shape_/shape.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\shape_/shape.pch" | |||
| AssemblerListingLocation=".\shape_/" | |||
| ObjectFile=".\shape_/" | |||
| ProgramDataBaseFileName=".\shape_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/shaped.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\shape_/shaped.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\shape_/shape.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\shape_/shape.pch" | |||
| AssemblerListingLocation=".\shape_/" | |||
| ObjectFile=".\shape_/" | |||
| ProgramDataBaseFileName=".\shape_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib opengl32.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/shaped.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\shape_/shaped.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/shape.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/shape.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="opengl32.lib fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/shape.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/shape.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\shape.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,438 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="subwindow" | |||
| ProjectGUID="{7A2467D2-B03A-4964-A289-EF233EB39F69}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/subwindow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/subwindow.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib" | |||
| OutputFile="../../test/subwindow.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/subwindow.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\subwindow_" | |||
| IntermediateDirectory=".\subwindow_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\subwindow_/subwindow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\subwindow_/subwindow.pch" | |||
| AssemblerListingLocation=".\subwindow_/" | |||
| ObjectFile=".\subwindow_/" | |||
| ProgramDataBaseFileName=".\subwindow_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/subwindowd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\subwindow_/subwindowd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\subwindow_/subwindow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\subwindow_/subwindow.pch" | |||
| AssemblerListingLocation=".\subwindow_/" | |||
| ObjectFile=".\subwindow_/" | |||
| ProgramDataBaseFileName=".\subwindow_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib comctl32.lib" | |||
| OutputFile="../../test/subwindowd.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\subwindow_/subwindowd.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/subwindow.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/subwindow.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/subwindow.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/subwindow.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\subwindow.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||
| @@ -1,446 +0,0 @@ | |||
| <?xml version="1.0" encoding="Windows-1252"?> | |||
| <VisualStudioProject | |||
| ProjectType="Visual C++" | |||
| Version="9,00" | |||
| Name="sudoku" | |||
| ProjectGUID="{AE750416-51BA-485C-BD76-EF11B4536EE8}" | |||
| TargetFrameworkVersion="131072" | |||
| > | |||
| <Platforms> | |||
| <Platform | |||
| Name="Win32" | |||
| /> | |||
| </Platforms> | |||
| <ToolFiles> | |||
| </ToolFiles> | |||
| <Configurations> | |||
| <Configuration | |||
| Name="Debug|Win32" | |||
| OutputDirectory=".\sudoku_" | |||
| IntermediateDirectory=".\sudoku_" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\sudoku_/sudoku.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\sudoku_/sudoku.pch" | |||
| AssemblerListingLocation=".\sudoku_/" | |||
| ObjectFile=".\sudoku_/" | |||
| ProgramDataBaseFileName=".\sudoku_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltkd.lib winmm.lib comctl32.lib" | |||
| OutputFile="../../test/sudokud.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\sudoku_/sudokud.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release|Win32" | |||
| OutputDirectory=".\Release" | |||
| IntermediateDirectory=".\Release" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/sudoku.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/sudoku.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib winmm.lib comctl32.lib" | |||
| OutputFile="../../test/sudoku.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/sudoku.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Debug Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\sudoku_/sudoku.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1;_CRT_SECURE_NO_DEPRECATE;WIN32;_DEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="3" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\sudoku_/sudoku.pch" | |||
| AssemblerListingLocation=".\sudoku_/" | |||
| ObjectFile=".\sudoku_/" | |||
| ProgramDataBaseFileName=".\sudoku_/" | |||
| SuppressStartupBanner="true" | |||
| DebugInformationFormat="3" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="_DEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="cairo.lib fltkd.lib winmm.lib comctl32.lib" | |||
| OutputFile="../../test/sudokud.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| GenerateDebugInformation="true" | |||
| ProgramDatabaseFile=".\sudoku_/sudokud.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| <Configuration | |||
| Name="Release Cairo|Win32" | |||
| OutputDirectory="$(ConfigurationName)" | |||
| IntermediateDirectory="$(ConfigurationName)" | |||
| ConfigurationType="1" | |||
| InheritedPropertySheets="$(VCInstallDir)VCProjectDefaults\UpgradeFromVC71.vsprops" | |||
| UseOfMFC="0" | |||
| ATLMinimizesCRunTimeLibraryUsage="false" | |||
| > | |||
| <Tool | |||
| Name="VCPreBuildEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCCustomBuildTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXMLDataGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCWebServiceProxyGeneratorTool" | |||
| /> | |||
| <Tool | |||
| Name="VCMIDLTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| MkTypLibCompatible="true" | |||
| SuppressStartupBanner="true" | |||
| TargetEnvironment="1" | |||
| TypeLibraryName=".\Release/sudoku.tlb" | |||
| HeaderFileName="" | |||
| /> | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="4" | |||
| InlineFunctionExpansion="2" | |||
| FavorSizeOrSpeed="2" | |||
| AdditionalIncludeDirectories=".;..\..\zlib;..\..\png;..\..\jpeg;../.." | |||
| PreprocessorDefinitions="FLTK_HAVE_CAIRO=1,_CRT_SECURE_NO_DEPRECATE;WIN32;NDEBUG;_WINDOWS;WIN32_LEAN_AND_MEAN;VC_EXTRA_LEAN;WIN32_EXTRA_LEAN" | |||
| RuntimeLibrary="2" | |||
| UsePrecompiledHeader="0" | |||
| PrecompiledHeaderFile=".\Release/sudoku.pch" | |||
| AssemblerListingLocation=".\Release/" | |||
| ObjectFile=".\Release/" | |||
| ProgramDataBaseFileName=".\Release/" | |||
| SuppressStartupBanner="true" | |||
| CompileAs="0" | |||
| /> | |||
| <Tool | |||
| Name="VCManagedResourceCompilerTool" | |||
| /> | |||
| <Tool | |||
| Name="VCResourceCompilerTool" | |||
| PreprocessorDefinitions="NDEBUG" | |||
| Culture="1033" | |||
| /> | |||
| <Tool | |||
| Name="VCPreLinkEventTool" | |||
| /> | |||
| <Tool | |||
| Name="VCLinkerTool" | |||
| AdditionalDependencies="fltk.lib winmm.lib comctl32.lib cairo.lib" | |||
| OutputFile="../../test/sudoku.exe" | |||
| LinkIncremental="1" | |||
| SuppressStartupBanner="true" | |||
| AdditionalLibraryDirectories="..\..\lib" | |||
| IgnoreDefaultLibraryNames="libcd" | |||
| ProgramDatabaseFile=".\Release/sudoku.pdb" | |||
| SubSystem="2" | |||
| RandomizedBaseAddress="1" | |||
| DataExecutionPrevention="0" | |||
| TargetMachine="1" | |||
| /> | |||
| <Tool | |||
| Name="VCALinkTool" | |||
| /> | |||
| <Tool | |||
| Name="VCManifestTool" | |||
| /> | |||
| <Tool | |||
| Name="VCXDCMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCBscMakeTool" | |||
| /> | |||
| <Tool | |||
| Name="VCFxCopTool" | |||
| /> | |||
| <Tool | |||
| Name="VCAppVerifierTool" | |||
| /> | |||
| <Tool | |||
| Name="VCPostBuildEventTool" | |||
| /> | |||
| </Configuration> | |||
| </Configurations> | |||
| <References> | |||
| </References> | |||
| <Files> | |||
| <File | |||
| RelativePath="..\..\test\sudoku.cxx" | |||
| > | |||
| <FileConfiguration | |||
| Name="Debug|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Debug Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| Optimization="0" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| <FileConfiguration | |||
| Name="Release Cairo|Win32" | |||
| > | |||
| <Tool | |||
| Name="VCCLCompilerTool" | |||
| AdditionalIncludeDirectories="" | |||
| PreprocessorDefinitions="" | |||
| /> | |||
| </FileConfiguration> | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\sudoku.rc" | |||
| > | |||
| </File> | |||
| <File | |||
| RelativePath="..\..\test\sudokurc.h" | |||
| > | |||
| </File> | |||
| </Files> | |||
| <Globals> | |||
| </Globals> | |||
| </VisualStudioProject> | |||