Skip to content

Commit

Permalink
Fixed|Windows|qmake: VC solution generator script
Browse files Browse the repository at this point in the history
There was a problem with the GUI Shell project settings.
  • Loading branch information
skyjake committed May 15, 2013
1 parent e6718ac commit f451c04
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions doomsday/build/win32/qmake_msvc.py
Expand Up @@ -28,7 +28,7 @@

# Run qmake to generate the solution and vcprojs.
os.chdir(solPath)
#os.system(os.path.join(rootPath, 'build', 'win32', 'qmake_tp_vc.bat'))
os.system(os.path.join(rootPath, 'build', 'win32', 'qmake_tp_vc.bat'))

# Cleanup.
print "\nDeleting spurious PK3s..."
Expand All @@ -53,9 +53,10 @@ def fileRegOff(fn, pattern, startAtPos=0):
return found.start()


fileRegex('libdeng2\deng2.vcxproj',
r'=\\"([A-Za-z0-9_\- ]+)\\"',
r'="\1"')
for proj in ['libdeng2\deng2.vcxproj', 'tools\shell\shell-gui\Doomsday-Shell.vcxproj']:
fileRegex(proj,
r'=\\"([A-Za-z0-9_\-\. ]+)\\"',
r'="\1"')

copyScript = 'python "%s\\\\build\win32\copy_to_products.py' % rootPath + '" "' + solPath + '"'
rcDirs = '"' + rootPath + '\\\\api";"' + rootPath + '\\\\libdeng1\include' + '"'
Expand Down

0 comments on commit f451c04

Please sign in to comment.