Changeset 29


Ignore:
Timestamp:
03/04/13 11:33:12 (11 years ago)
Author:
lucsch
Message:

Updating build script for Windows

Location:
trunk/tmdmcreator/build
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tmdmcreator/build/update-tmdmcreator.py

    r6 r29  
    5252 
    5353 
     54def buildWindow7(): 
     55  builddir = "D:\\PRJ\\DATAMODEL\\bin" 
     56  try: 
     57    p = Popen("cmake -G\"Visual Studio 10\" " + GetCmakeDirName() + " -DUSE_MT_LIBRARY:BOOL=1", shell=True, cwd=builddir) 
     58    p.wait() 
     59  except: 
     60    print("Error creating makefile") 
    5461 
    5562if __name__ == '__main__': 
     
    6673  button2 = Button(myContainer1, text="Configure MacBook", command=buildMacBook) 
    6774  button2.pack() 
     75   
     76  button4 = Button(myContainer1, text="Configure Window 7", command=buildWindow7) 
     77  button4.pack() 
    6878 
    6979  root.mainloop() 
Note: See TracChangeset for help on using the changeset viewer.