~ubuntu-branches/ubuntu/wily/qtbase-opensource-src/wily

« back to all changes in this revision

Viewing changes to tests/auto/tools/qmake/testdata/pro_file_cache/pro_file_cache.pro

  • Committer: Package Import Robot
  • Author(s): Timo Jyrinki
  • Date: 2013-02-05 12:46:17 UTC
  • Revision ID: package-import@ubuntu.com-20130205124617-c8jouts182j002fx
Tags: upstream-5.0.1+dfsg
ImportĀ upstreamĀ versionĀ 5.0.1+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
TEMPLATE = app
 
2
CONFIG -= debug_and_release_target
 
3
 
 
4
SOURCES =
 
5
 
 
6
content = ""
 
7
write_file("include.pri", content)
 
8
include(include.pri)
 
9
 
 
10
content = "SOURCES = main.cpp"
 
11
write_file("include.pri", content)
 
12
include(include.pri)
 
13
 
 
14
# Make sure that including the .pri file a second time will reload it properly
 
15
# off disk with the new content.
 
16
isEmpty(SOURCES): error(No sources defined)
 
17
 
 
18
# Empty it again to silence qmake about non-existance sources
 
19
SOURCES =