| 1 | diff -Naur vendor\current/build_os2.cmd trunk/build_os2.cmd
|
|---|
| 2 | --- vendor\current/build_os2.cmd 1970-01-01 01:00:00.000000000 +0100
|
|---|
| 3 | +++ trunk/build_os2.cmd 2013-05-22 17:19:38.000000000 +0200
|
|---|
| 4 | @@ -0,0 +1,296 @@
|
|---|
| 5 | +/* qpdfview Build Script */
|
|---|
| 6 | +/* version history */
|
|---|
| 7 | +/* version 0.1.0 from 25.03.2013 Silvan (first edition) */
|
|---|
| 8 | +/* version 0.1.1 from 25.04.2013 Silvan (new poppler lib) */
|
|---|
| 9 | +
|
|---|
| 10 | +/* init the version string (don't forget to change) */
|
|---|
| 11 | +version = "0.1.1"
|
|---|
| 12 | +version_date = "25.04.2013"
|
|---|
| 13 | +popplerDll = 'popp36.dll'
|
|---|
| 14 | +popplerDllQt = 'poppqt44.dll'
|
|---|
| 15 | +popplerDir = 'e:\trees\poppler\trunk'
|
|---|
| 16 | +'@echo off'
|
|---|
| 17 | +
|
|---|
| 18 | +parse arg command option
|
|---|
| 19 | +parse source . . scriptFile
|
|---|
| 20 | +
|
|---|
| 21 | +/* init the required vars */
|
|---|
| 22 | +qRC = 0
|
|---|
| 23 | +mRC = 0
|
|---|
| 24 | +buildDir = strip(directory(),'T','\') /* Make sure we have no trailing backslash */
|
|---|
| 25 | +sourceDir = FixDir(filespec('D', scriptFile) || filespec('P', scriptFile))
|
|---|
| 26 | +srcDir = sourceDir
|
|---|
| 27 | +OS2Dir = sourceDir
|
|---|
| 28 | +installDir = buildDir || '\install'
|
|---|
| 29 | +installDirT= installDir || '\data'
|
|---|
| 30 | +qErrorFile = buildDir||'\qmake.err'
|
|---|
| 31 | +qOutFile = buildDir||'\qmake.out'
|
|---|
|
|---|