Changeset 17 in tspsg-svn for trunk/tspsg.pro


Ignore:
Timestamp:
Jun 15, 2009, 5:10:25 PM (15 years ago)
Author:
laleppa
Message:

+ Windows CE (WM6, actually, but should work on other versions) support:

  • added optimized for wince forms (recommended minimal resolution is 240x320);
  • removed unsupported under wince features from menus (e.g., printing);
  • added preprocessor directives to remove code for unsupported under wince features.
  • Fixed wrong encoding in some files to UTF-8.
  • Updated copyright and e-mail.
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

    • Property svn:ignore
      •  

        old new  
        1 *.vcproj*
         1*.idb
        22*.ncb
         3*.pdb
        34*.sln
        45*.suo
        5 *.idb
        6 *.pdb
        7 ui_*
         6*.vcproj*
         7Makefile*
         8Win32
         9Windows Mobile*
         10debug
        811moc_*
        912qrc_*
        10 tspsg
        11 Makefile*
        12 debug
        1313release
         14ui_*
  • trunk/tspsg.pro

    r14 r17  
    11######################################################################
    2 # Automatically generated by qmake (2.01a) ?? 30. ??? 22:14:47 2007
     2#
     3# TSPSG - TSP Solver and Generator
     4# Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
     5#
     6# $Id$
     7# $URL$
     8#
     9# This file is part of TSPSG.
     10#
    311######################################################################
    412
    5 TEMPLATE = app
    6 TARGET =
    7 DEPENDPATH += . i18n resources src ui
     13win32 {
     14    TEMPLATE = vcapp
     15} else {
     16    TEMPLATE = app
     17}
     18TARGET = tspsg
     19DEPENDPATH += .
    820INCLUDEPATH += .
    921
    10 # Input
    11 HEADERS += src/mainwindow.h src/settingsdialog.h src/tspmodel.h src/tspsolver.h
    12 FORMS += ui/mainwindow.ui ui/settingsdialog.ui
    13 SOURCES += src/main.cpp \
    14            src/mainwindow.cpp \
    15            src/settingsdialog.cpp \
    16            src/tspmodel.cpp \
    17            src/tspsolver.cpp
    18 RESOURCES += resources/tspsg.qrc
    19 TRANSLATIONS += i18n/English.ts i18n/Ukrainian.ts
     22#Include file(s)
     23include(tspsg.pri)
     24
     25#Windows resource file
     26win32:RC_FILE = resources/tspsg.rc
Note: See TracChangeset for help on using the changeset viewer.