Dominik Riebeling | 738d83c | 2010-06-15 19:49:43 +0000 | [diff] [blame] | 1 | # |
| 2 | # __________ __ ___. |
| 3 | # Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | # Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | # Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | # Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | # \/ \/ \/ \/ \/ |
| 8 | # $Id$ |
| 9 | # |
| 10 | # All files in this archive are subject to the GNU General Public License. |
| 11 | # See the file COPYING in the source tree root for full license agreement. |
| 12 | # |
| 13 | # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 14 | # KIND, either express or implied. |
| 15 | # |
| 16 | |
| 17 | # Test: Utils::compareVersionStrings(). |
| 18 | # |
| 19 | include(tests.pri) |
| 20 | |
| 21 | TEMPLATE = app |
Dominik Riebeling | c1fcd69 | 2012-03-26 23:34:51 +0200 | [diff] [blame] | 22 | TARGET = test-compareversion |
Dominik Riebeling | 738d83c | 2010-06-15 19:49:43 +0000 | [diff] [blame] | 23 | INCLUDEPATH += . ../base |
| 24 | |
| 25 | # Input |
| 26 | SOURCES += \ |
Dominik Riebeling | c1fcd69 | 2012-03-26 23:34:51 +0200 | [diff] [blame] | 27 | test-compareversion.cpp \ |
Dominik Riebeling | 738d83c | 2010-06-15 19:49:43 +0000 | [diff] [blame] | 28 | ../base/rbsettings.cpp \ |
| 29 | ../base/rockboxinfo.cpp \ |
| 30 | ../base/systeminfo.cpp \ |
| 31 | ../base/utils.cpp |
| 32 | |
| 33 | HEADERS += \ |
| 34 | ../base/rbsettings.h \ |
| 35 | ../base/rockboxinfo.h \ |
| 36 | ../base/systeminfo.h \ |
| 37 | ../base/utils.h |
| 38 | |