| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821 |
- #!/usr/bin/python
- ########################################################################
- #
- # Caution: there are two separate, independent build systems:
- # 'makepanda', and 'ppremake'. Use one or the other, do not attempt
- # to use both. This file is part of the 'makepanda' system.
- #
- # To build panda using this script, type 'makepanda.py' on unix
- # or 'makepanda.bat' on windows, and examine the help-text.
- # Then run the script again with the appropriate options to compile
- # panda3d.
- #
- ########################################################################
- import sys,os,time,stat,string,re,getopt,cPickle,fnmatch,threading,Queue,signal
- from glob import glob
- ########################################################################
- ##
- ## PARSING THE COMMAND LINE OPTIONS
- ##
- ## You might be tempted to change the defaults by editing them
- ## here. Don't do it. Instead, create a script that compiles
- ## panda with your preferred options. Or, create
- ## a 'makepandaPreferences' file and put it into your python path.
- ##
- ########################################################################
- COMPILER=0
- THIRDPARTYLIBS=0
- OPTIMIZE="3"
- INSTALLER=0
- GENMAN=0
- VERSION=0
- VERBOSE=1
- COMPRESSOR="zlib"
- PACKAGES=["PYTHON","ZLIB","PNG","JPEG","TIFF","VRPN","FMODEX","NVIDIACG","NSPR",
- "OPENSSL","FREETYPE","FFTW","MILES","MAYA6","MAYA65","MAYA7","MAX6","MAX7","MAX8",
- "BISON","FLEX","FFMPEG","PANDATOOL","PANDAAPP","DX8","DX9"]
- OMIT=PACKAGES[:]
- WARNINGS=[]
- DIRECTXSDK = {}
- MAYASDK = {}
- MAXSDK = {}
- MAXSDKCS = {}
- PYTHONSDK=0
- STARTTIME=time.time()
- SLAVEFILE=0
- DEPENDENCYQUEUE=[]
- FILEDATECACHE = {}
- BUILTFROMCACHE = {}
- CXXINCLUDECACHE = {}
- THREADCOUNT=0
- DXVERSIONS=["8","9"]
- MAYAVERSIONS=["6","65","7"]
- MAXVERSIONS=["6","7","8"]
- ICACHEPATH="built/tmp/makepanda-dcache"
- INTERRUPT=0
- MAINTHREAD=threading.currentThread()
- ##########################################################################################
- #
- # If there is a makepandaPreferences.py, import it
- #
- ##########################################################################################
- try:
- from makepandaPreferences import *
- except ImportError:
- pass
- ########################################################################
- ##
- ## The Dependency cache.
- ##
- ## Makepanda's strategy for file dependencies is different from most
- ## make-utilities. Whenever a file is built, makepanda records
- ## that the file was built, and it records what the input files were,
- ## and what their dates were. Whenever a file is about to be built,
- ## panda compares the current list of input files and their dates,
- ## to the previous list of input files and their dates. If they match,
- ## there is no need to build the file.
- ##
- ## Also, makepanda automatically calculates dependencies from CXX
- ## include files. It does so by scanning the CXX files. After it scans,
- ## it records the date of the source file and the list of includes that
- ## it contains. It assumes that if the file date hasn't changed, that
- ## the list of include-statements inside the file has not changed
- ## either.
- ##
- ########################################################################
- def SaveDependencyCache():
- try: icache = open(ICACHEPATH,'wb')
- except: icache = 0
- if (icache!=0):
- print "Storing dependency cache."
- cPickle.dump(CXXINCLUDECACHE, icache, 1)
- cPickle.dump(BUILTFROMCACHE, icache, 1)
- icache.close()
- def LoadDependencyCache():
- global CXXINCLUDECACHE
- global BUILTFROMCACHE
- try: icache = open(ICACHEPATH,'rb')
- except: icache = 0
- if (icache!=0):
- CXXINCLUDECACHE = cPickle.load(icache)
- BUILTFROMCACHE = cPickle.load(icache)
- icache.close()
- LoadDependencyCache()
- ########################################################################
- ##
- ## Error exit has to be done carefully, because the
- ## dependency cache must be saved, and because this can
- ## only be done by the main thread.
- ##
- ########################################################################
- def exit(msg):
- if (threading.currentThread() == MAINTHREAD):
- SaveDependencyCache()
- print "Elapsed Time: "+PrettyTime(time.time() - STARTTIME)
- print msg
- sys.stdout.flush()
- sys.stderr.flush()
- os._exit(1)
- else:
- print msg
- raise "initiate-exit"
- ########################################################################
- ##
- ## Utility Routines
- ##
- ########################################################################
- def filedate(path):
- if FILEDATECACHE.has_key(path):
- return FILEDATECACHE[path]
- try: date = os.path.getmtime(path)
- except: date = 0
- FILEDATECACHE[path] = date
- return date
- def JustBuilt(files,others):
- dates = []
- for file in files:
- del FILEDATECACHE[file]
- dates.append(filedate(file))
- for file in others:
- dates.append(filedate(file))
- key = tuple(files)
- BUILTFROMCACHE[key] = [others,dates]
- def NeedsBuild(files,others):
- dates = []
- for file in files:
- dates.append(filedate(file))
- for file in others:
- dates.append(filedate(file))
- key = tuple(files)
- if (BUILTFROMCACHE.has_key(key)):
- if (BUILTFROMCACHE[key] == [others,dates]):
- return 0
- else:
- oldothers = BUILTFROMCACHE[key][0]
- if (oldothers != others):
- add = SetDifference(others, oldothers)
- sub = SetDifference(oldothers, others)
- for f in files:
- print "CAUTION: file dependencies changed: "+f
- if (VERBOSE > 1):
- print " - Add: "+str(add)
- print " - Sub: "+str(sub)
- return 1
- def xpaths(prefix,base,suffix):
- if type(base) == str:
- return prefix + base + suffix
- result = []
- for x in base:
- result.append(xpaths(prefix,x,suffix))
- return result
- if sys.platform == "win32":
- import _winreg
- def ListRegistryKeys(path):
- result=[]
- index=0
- try:
- key = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, path, 0, _winreg.KEY_READ)
- while (1):
- result.append(_winreg.EnumKey(key, index))
- index = index + 1
- except: pass
- if (key!=0): _winreg.CloseKey(key)
- return result
- def GetRegistryKey(path, subkey):
- k1=0
- key=0
- try:
- key = _winreg.OpenKey(_winreg.HKEY_LOCAL_MACHINE, path, 0, _winreg.KEY_READ)
- k1, k2 = _winreg.QueryValueEx(key, subkey)
- except: pass
- if (key!=0): _winreg.CloseKey(key)
- return k1
- def oscmd(cmd):
- print cmd
- sys.stdout.flush()
- if sys.platform == "win32":
- exe = cmd.split()[0]+".exe"
- if os.path.isfile(exe)==0:
- for i in os.environ["PATH"].split(";"):
- if os.path.isfile(os.path.join(i, exe)):
- exe = os.path.join(i, exe)
- break
- if os.path.isfile(exe)==0:
- exit("Cannot find "+exe+" on search path")
- res = os.spawnl(os.P_WAIT, exe, cmd)
- else:
- res = os.system(cmd)
- if res != 0:
- exit("")
- def getbuilding(opts):
- building = 0
- for x in opts:
- if (x[:9]=="BUILDING_"): building = x[9:]
- return building
- def getoptlevel(opts,defval):
- for x in opts:
- if (x[:3]=="OPT"):
- n = int(x[3:])
- if (n > defval): defval = n
- return defval
- def PrettyTime(t):
- t = int(t)
- hours = t/3600
- t -= hours*3600
- minutes = t/60
- t -= minutes*60
- seconds = t
- if (hours): return str(hours)+" hours "+str(minutes)+" min"
- if (minutes): return str(minutes)+" min "+str(seconds)+" sec"
- return str(seconds)+" sec"
- def MakeDirectory(path):
- if os.path.isdir(path): return 0
- os.mkdir(path)
- def ReadFile(wfile):
- try:
- srchandle = open(wfile, "rb")
- data = srchandle.read()
- srchandle.close()
- return data
- except: exit("Cannot read "+wfile)
- def WriteFile(wfile,data):
- try:
- dsthandle = open(wfile, "wb")
- dsthandle.write(data)
- dsthandle.close()
- except: exit("Cannot write "+wfile)
- def CreatePlaceHolder(file):
- if (os.path.isfile(file)==0):
- WriteFile(file,"")
- def ConditionalWriteFile(dest,desiredcontents):
- try:
- rfile = open(dest, 'rb')
- contents = rfile.read(-1)
- rfile.close()
- except:
- contents=0
- if contents != desiredcontents:
- if VERBOSE:
- print "Regenerating file: "+dest
- sys.stdout.flush()
- WriteFile(dest,desiredcontents)
- def SetDifference(add, sub):
- set = {}
- for x in add: set[x]=1
- for x in sub:
- if (set.has_key(x)):
- del set[x]
- return set.keys()
- def PkgSelected(pkglist, pkg):
- if (pkglist.count(pkg)==0): return 0
- if (OMIT.count(pkg)): return 0
- return 1
- def DependencyQueue(fn, args, targets, sources, altsrc):
- DEPENDENCYQUEUE.append([fn,args,targets,sources, altsrc])
- def keyboardInterruptHandler(x,y):
- exit("keyboard interrupt")
- signal.signal(signal.SIGINT, keyboardInterruptHandler)
- ########################################################################
- ##
- ## Command-line parser.
- ##
- ## You can type "makepanda --help" to see all the options.
- ##
- ########################################################################
- def usage(problem):
- if (problem):
- print ""
- print problem
- print ""
- print "Makepanda generates a 'built' subdirectory containing a"
- print "compiled copy of Panda3D. Command-line arguments are:"
- print ""
- print " --help (print the help message you're reading now)"
- print " --package-info (help info about the optional packages)"
- print " --optimize X (optimization level can be 1,2,3,4)"
- print " --installer (build an installer)"
- print " --v1 X (set the major version number)"
- print " --v2 X (set the minor version number)"
- print " --v3 X (set the sequence version number)"
- print " --lzma (use lzma compression when building installer)"
- print " --slaves X (use the distributed build system. see manual)"
- print " --threads N (use the multithreaded build system. see manual)"
- print ""
- for pkg in PACKAGES:
- p = pkg.lower()
- print " --use-%-9s --no-%-9s (enable/disable use of %s)"%(p, p, pkg)
- print ""
- print " --nothing (disable every third-party lib)"
- print " --everything (enable every third-party lib)"
- print ""
- print " --quiet (print less output)"
- print " --verbose (print more output and debugging info)"
- print ""
- print "The simplest way to compile panda is to just type:"
- print ""
- print " makepanda --everything"
- print ""
- exit("")
- def parseopts(args):
- global OPTIMIZE,OMIT,INSTALLER,GENMAN
- global VERSION,COMPRESSOR,VERBOSE,SLAVEFILE,THREADCOUNT
- longopts = [
- "help","package-info",
- "optimize=","everything","nothing","installer","quiet","verbose",
- "version=","lzma","no-python","slaves=","threads="]
- anything = 0
- for pkg in PACKAGES: longopts.append("no-"+pkg.lower())
- for pkg in PACKAGES: longopts.append("use-"+pkg.lower())
- try:
- opts, extras = getopt.getopt(args, "", longopts)
- for option,value in opts:
- if (option=="--help"): raise "usage"
- elif (option=="--optimize"): OPTIMIZE=value
- elif (option=="--quiet"): VERBOSE-=1
- elif (option=="--verbose"): VERBOSE+=1
- elif (option=="--installer"): INSTALLER=1
- elif (option=="--genman"): GENMAN=1
- elif (option=="--everything"): OMIT=[]
- elif (option=="--nothing"): OMIT=PACKAGES[:]
- elif (option=="--slaves"): SLAVEFILE=value
- elif (option=="--threads"): THREADCOUNT=int(value)
- elif (option=="--version"):
- VERSION=value
- if (len(VERSION.split(".")) != 3): raise "usage"
- elif (option=="--lzma"): COMPRESSOR="lzma"
- else:
- for pkg in PACKAGES:
- if (option=="--use-"+pkg.lower()):
- if (OMIT.count(pkg)): OMIT.remove(pkg)
- break
- for pkg in PACKAGES:
- if (option=="--no-"+pkg.lower()):
- if (OMIT.count(pkg)==0): OMIT.append(pkg)
- break
- anything = 1
- except: usage(0)
- if (anything==0): usage(0)
- if (OPTIMIZE=="1"): OPTIMIZE=1
- elif (OPTIMIZE=="2"): OPTIMIZE=2
- elif (OPTIMIZE=="3"): OPTIMIZE=3
- elif (OPTIMIZE=="4"): OPTIMIZE=4
- else: usage("Invalid setting for OPTIMIZE")
- parseopts(sys.argv[1:])
- ########################################################################
- #
- # Locate the root of the panda tree
- #
- ########################################################################
- PANDASOURCE=os.path.dirname(os.path.abspath(sys.path[0]))
- if ((os.path.exists(os.path.join(PANDASOURCE,"makepanda/makepanda.py"))==0) or
- (os.path.exists(os.path.join(PANDASOURCE,"dtool","src","dtoolbase","dtoolbase.h"))==0) or
- (os.path.exists(os.path.join(PANDASOURCE,"panda","src","pandabase","pandabase.h"))==0)):
- exit("I am unable to locate the root of the panda source tree.")
- os.chdir(PANDASOURCE)
- ########################################################################
- ##
- ## If you have the "sdks" directory, supply all sdks
- ##
- ## This is a temporary hack, it may go away.
- ##
- ########################################################################
- if (os.path.isdir("sdks")):
- DIRECTXSDK["DX8"] = "sdks/directx8"
- DIRECTXSDK["DX9"] = "sdks/directx9"
- MAXSDKCS["MAX6"] = "sdks/maxsdk6"
- MAXSDKCS["MAX7"] = "sdks/maxsdk7"
- MAXSDKCS["MAX8"] = "sdks/maxsdk8"
- MAXSDK["MAX6"] = "sdks/maxsdk6"
- MAXSDK["MAX7"] = "sdks/maxsdk7"
- MAXSDK["MAX8"] = "sdks/maxsdk8"
- MAYASDK["MAYA6"] = "sdks/maya6"
- MAYASDK["MAYA65"] = "sdks/maya65"
- MAYASDK["MAYA7"] = "sdks/maya7"
- ########################################################################
- ##
- ## Locate the DirectX SDK
- ##
- ## Microsoft keeps changing the &*#$*& registry key for the DirectX SDK.
- ## The only way to reliably find it is to search through the installer's
- ## uninstall-directories, look in each one, and see if it contains the
- ## relevant files.
- ##
- ########################################################################
- if sys.platform == "win32":
- uninstaller = "SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall";
- for subdir in ListRegistryKeys(uninstaller):
- if (subdir[0]=="{"):
- dir = GetRegistryKey(uninstaller+"\\"+subdir, "InstallLocation")
- if (dir != 0):
- if ((DIRECTXSDK.has_key("DX8")==0) and
- (os.path.isfile(dir+"\\Include\\d3d8.h")) and
- (os.path.isfile(dir+"\\Include\\d3dx8.h")) and
- (os.path.isfile(dir+"\\Lib\\d3d8.lib")) and
- (os.path.isfile(dir+"\\Lib\\d3dx8.lib"))):
- DIRECTXSDK["DX8"] = dir.replace("\\", "/").rstrip("/")
- if ((DIRECTXSDK.has_key("DX9")==0) and
- (os.path.isfile(dir+"\\Include\\d3d9.h")) and
- (os.path.isfile(dir+"\\Include\\d3dx9.h")) and
- (os.path.isfile(dir+"\\Include\\dxsdkver.h")) and
- (os.path.isfile(dir+"\\Lib\\x86\\d3d9.lib")) and
- (os.path.isfile(dir+"\\Lib\\x86\\d3dx9.lib"))):
- DIRECTXSDK["DX9"] = dir.replace("\\", "/").rstrip("/")
- for ver in DXVERSIONS:
- if (OMIT.count("DX"+ver)==0):
- if (DIRECTXSDK.has_key("DX"+ver)==0):
- WARNINGS.append("I cannot locate SDK for DX"+ver)
- WARNINGS.append("I have automatically added this command-line option: --no-dx"+ver)
- OMIT.append("DX"+ver)
- else:
- WARNINGS.append("Using DX"+ver+" sdk: "+DIRECTXSDK["DX"+ver])
- ########################################################################
- ##
- ## Locate the Maya SDK
- ##
- ########################################################################
- MAYAVERSIONINFO=[("MAYA6", "SOFTWARE\\Alias|Wavefront\\Maya\\6.0\\Setup\\InstallPath"),
- ("MAYA65", "SOFTWARE\\Alias|Wavefront\\Maya\\6.5\\Setup\\InstallPath"),
- ("MAYA7", "SOFTWARE\\Alias|Wavefront\\Maya\\7.0\\Setup\\InstallPath")
- ]
- for (ver,key) in MAYAVERSIONINFO:
- print "Checking for "+ver
- if (OMIT.count(ver)==0):
- if (sys.platform == "win32"):
- if (MAYASDK.has_key(ver)==0):
- MAYASDK[ver]=GetRegistryKey(key, "MAYA_INSTALL_LOCATION")
- if (MAYASDK[ver] == 0):
- WARNINGS.append("The registry does not appear to contain a pointer to the "+ver+" SDK.")
- WARNINGS.append("I have automatically added this command-line option: --no-"+ver.lower())
- OMIT.append(ver)
- else:
- MAYASDK[ver] = MAYASDK[ver].replace("\\", "/").rstrip("/")
- else:
- WARNINGS.append(ver+" not yet supported under linux")
- WARNINGS.append("I have automatically added this command-line option: --no-"+ver.lower())
- OMIT.append(ver)
- ########################################################################
- ##
- ## Locate the 3D Studio Max and Character Studio SDKs
- ##
- ########################################################################
- MAXVERSIONINFO = [("MAX6", "SOFTWARE\\Autodesk\\3DSMAX\\6.0", "installdir", "maxsdk\\cssdk\\include"),
- ("MAX7", "SOFTWARE\\Autodesk\\3DSMAX\\7.0", "Installdir", "maxsdk\\include\\CS"),
- ("MAX8", "SOFTWARE\\Autodesk\\3DSMAX\\8.0", "Installdir", "maxsdk\\include\\CS"),
- ]
- for version,key1,key2,subdir in MAXVERSIONINFO:
- if (OMIT.count(version)==0):
- if (sys.platform == "win32"):
- if (MAXSDK.has_key(version)==0):
- top = GetRegistryKey(key1,key2)
- if (top == 0):
- WARNINGS.append("The registry does not appear to contain a pointer to "+version)
- WARNINGS.append("I have automatically added this command-line option: --no-"+version.lower())
- OMIT.append(version)
- else:
- if (os.path.isdir(top + "\\" + subdir)==0):
- WARNINGS.append("Your copy of "+version+" does not include the character studio SDK")
- WARNINGS.append("I have automatically added this command-line option: --no-"+version.lower())
- OMIT.append(version)
- else:
- MAXSDK[version] = top + "maxsdk"
- MAXSDKCS[version] = top + subdir
- else:
- WARNINGS.append(version+" not yet supported under linux")
- WARNINGS.append("I have automatically added this command-line option: --no-"+version.lower())
- OMIT.append(version)
- ########################################################################
- ##
- ## Locate the Python SDK
- ##
- ########################################################################
- if (OMIT.count("PYTHON")==0):
- if (sys.platform == "win32"):
- PYTHONSDK="thirdparty/win-python"
- else:
- if (os.path.isdir("/usr/include/python2.5")): PYTHONSDK = "/usr/include/python2.5"
- elif (os.path.isdir("/usr/include/python2.4")): PYTHONSDK = "/usr/include/python2.4"
- elif (os.path.isdir("/usr/include/python2.3")): PYTHONSDK = "/usr/include/python2.3"
- elif (os.path.isdir("/usr/include/python2.2")): PYTHONSDK = "/usr/include/python2.2"
- else: exit("Cannot find the python SDK")
- ########################################################################
- ##
- ## Choose a Compiler.
- ##
- ## This should also set up any environment variables needed to make
- ## the compiler work.
- ##
- ########################################################################
- def AddToPathEnv(path,add):
- if (os.environ.has_key(path)):
- os.environ[path] = add + ";" + os.environ[path]
- else:
- os.environ[path] = add
- def ChooseCompiler():
- global COMPILER, THIRDPARTYLIBS
- # Try to use Linux GCC
- if (sys.platform[:5] == "linux"):
- COMPILER="LINUX"
- THIRDPARTYLIBS="thirdparty/linux-libs-a/"
- return
- # Try to use Visual Studio 8
- vcdir = GetRegistryKey("SOFTWARE\\Microsoft\\VisualStudio\\SxS\\VC7", "8.0")
- print "VCDIR=",vcdir
- if (vcdir != 0) and (vcdir[-4:] == "\\VC\\"):
- vcdir = vcdir[:-3]
- platsdk=GetRegistryKey("SOFTWARE\\Microsoft\\MicrosoftSDK\\InstalledSDKs\\D2FF9F89-8AA2-4373-8A31-C838BF4DBBE1",
- "Install Dir")
- if (platsdk == 0): exit("Found VC Toolkit, but cannot locate MS Platform SDK")
- WARNINGS.append("Using visual studio: "+vcdir)
- AddToPathEnv("PATH", vcdir + "VC\\bin")
- AddToPathEnv("PATH", vcdir + "Common7\\IDE")
- AddToPathEnv("INCLUDE", vcdir + "VC\\include")
- AddToPathEnv("LIB", vcdir + "VC\\lib")
- AddToPathEnv("INCLUDE", platsdk + "include")
- AddToPathEnv("LIB", platsdk + "lib")
- COMPILER="MSVC"
- THIRDPARTYLIBS="thirdparty/win-libs-vc8/"
- return
- # Try to use Visual Studio 7
- vcdir = GetRegistryKey("SOFTWARE\\Microsoft\\VisualStudio\\7.1", "InstallDir")
- if (vcdir == 0):
- vcdir = GetRegistryKey("SOFTWARE\\Microsoft\\VisualStudio\\7.0", "InstallDir")
- if (vcdir != 0) and (vcdir[-13:] == "\\Common7\\IDE\\"):
- vcdir = vcdir[:-12]
- WARNINGS.append("Using visual studio: "+vcdir)
- AddToPathEnv("PATH", vcdir + "vc7\\bin")
- AddToPathEnv("PATH", vcdir + "Common7\\IDE")
- AddToPathEnv("PATH", vcdir + "Common7\\Tools")
- AddToPathEnv("PATH", vcdir + "Common7\\Tools\\bin\\prerelease")
- AddToPathEnv("PATH", vcdir + "Common7\\Tools\\bin")
- AddToPathEnv("INCLUDE", vcdir + "vc7\\ATLMFC\\INCLUDE")
- AddToPathEnv("INCLUDE", vcdir + "vc7\\include")
- AddToPathEnv("INCLUDE", vcdir + "vc7\\PlatformSDK\\include\\prerelease")
- AddToPathEnv("INCLUDE", vcdir + "vc7\\PlatformSDK\\include")
- AddToPathEnv("LIB", vcdir + "vc7\\ATLMFC\\LIB")
- AddToPathEnv("LIB", vcdir + "vc7\\LIB")
- AddToPathEnv("LIB", vcdir + "vc7\\PlatformSDK\\lib\\prerelease")
- AddToPathEnv("LIB", vcdir + "vc7\\PlatformSDK\\lib")
- COMPILER="MSVC"
- THIRDPARTYLIBS="thirdparty/win-libs-vc7/"
- return
- # Try to use the Visual Toolkit 2003
- vcdir = GetRegistryKey("SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment","VCToolkitInstallDir")
- if (vcdir != 0) or (os.environ.has_key("VCTOOLKITINSTALLDIR")):
- if (vcdir == 0): vcdir = os.environ["VCTOOLKITINSTALLDIR"]
- platsdk=GetRegistryKey("SOFTWARE\\Microsoft\\MicrosoftSDK\\InstalledSDKs\\8F9E5EF3-A9A5-491B-A889-C58EFFECE8B3",
- "Install Dir")
- if (platsdk == 0): exit("Found VC Toolkit, but cannot locate MS Platform SDK")
- WARNINGS.append("Using visual toolkit: "+vcdir)
- WARNINGS.append("Using MS Platform SDK: "+platsdk)
- AddToPathEnv("PATH", vcdir + "\\bin")
- AddToPathEnv("INCLUDE", platsdk + "\\include")
- AddToPathEnv("INCLUDE", vcdir + "\\include")
- AddToPathEnv("LIB", platsdk + "\\lib")
- AddToPathEnv("LIB", vcdir + "\\lib")
- AddToPathEnv("LIB", "thirdparty\\win-libs-vc7\\extras\\lib")
- COMPILER="MSVC"
- THIRDPARTYLIBS="thirdparty/win-libs-vc7/"
- return
- # Give up
- exit("Cannot locate Microsoft Visual Studio 7.0, 7.1, or the Visual Toolkit 2003")
- ChooseCompiler()
- ##########################################################################################
- #
- # Disable packages that are currently broken or not supported.
- #
- ##########################################################################################
- if (OMIT.count("MILES")==0):
- WARNINGS.append("makepanda currently does not support miles sound system")
- WARNINGS.append("I have automatically added this command-line option: --no-miles")
- OMIT.append("MILES")
- if (sys.platform != "win32"):
- if (OMIT.count("DX8")==0): OMIT.append("DX8")
- if (OMIT.count("DX9")==0): OMIT.append("DX9")
- ##########################################################################################
- #
- # Verify that LD_LIBRARY_PATH contains the built/lib directory.
- #
- # If not, add it on a temporary basis, and issue a warning.
- #
- ##########################################################################################
- if (sys.platform != "win32"):
- BUILTLIB = os.path.abspath("built/lib")
- try:
- LDPATH = []
- f = file("/etc/ld.so.conf","r")
- for line in f: LDPATH.append(line.rstrip())
- f.close()
- except: LDPATH = []
- if (os.environ.has_key("LD_LIBRARY_PATH")):
- LDPATH = LDPATH + os.environ["LD_LIBRARY_PATH"].split(":")
- if (LDPATH.count(BUILTLIB)==0):
- WARNINGS.append("Caution: the built/lib directory is not in LD_LIBRARY_PATH")
- WARNINGS.append("or /etc/ld.so.conf. You must add it before using panda.")
- if (os.environ.has_key("LD_LIBRARY_PATH")):
- os.environ["LD_LIBRARY_PATH"] = BUILTLIB + ":" + os.environ["LD_LIBRARY_PATH"]
- else:
- os.environ["LD_LIBRARY_PATH"] = BUILTLIB
- #######################################################################
- #
- # Ensure that bison can find its skeleton file
- #
- #######################################################################
- if (sys.platform == "win32"):
- os.environ["BISON_SIMPLE"] = "thirdparty/win-util/bison.simple"
- ########################################################################
- ##
- ## Choose a version number for the installer
- ##
- ########################################################################
- if (VERSION == 0):
- try:
- f = file("dtool/PandaVersion.pp","r")
- pattern = re.compile('^[ \t]*[#][ \t]*define[ \t]+PANDA_VERSION[ \t]+([0-9]+)[ \t]+([0-9]+)[ \t]+([0-9]+)')
- for line in f:
- match = pattern.match(line,0)
- if (match):
- VERSION = match.group(1)+"."+match.group(2)+"."+match.group(3)
- break
- f.close()
- except: VERSION="0.0.0"
- ########################################################################
- #
- # Sanity check some command-line arguments.
- #
- ########################################################################
- if (INSTALLER) and (OMIT.count("PYTHON")):
- exit("Cannot build installer without python")
- ########################################################################
- ##
- ## Give a Status Report on Command-Line Options
- ##
- ########################################################################
- def printStatus(header,warnings):
- global VERBOSE
- if VERBOSE >= -2:
- print ""
- print "-------------------------------------------------------------------"
- print header
- tkeep = ""
- tomit = ""
- for x in PACKAGES:
- if (OMIT.count(x)==0): tkeep = tkeep + x + " "
- else: tomit = tomit + x + " "
- print "Makepanda: Compiler:",COMPILER
- print "Makepanda: Optimize:",OPTIMIZE
- print "Makepanda: Keep Pkg:",tkeep
- print "Makepanda: Omit Pkg:",tomit
- print "Makepanda: Verbose vs. Quiet Level:",VERBOSE
- if (GENMAN): print "Makepanda: Generate API reference manual"
- else : print "Makepanda: Don't generate API reference manual"
- if (sys.platform == "win32"):
- if INSTALLER: print "Makepanda: Build installer, using",COMPRESSOR
- else : print "Makepanda: Don't build installer"
- print "Makepanda: Version ID: "+VERSION
- for x in warnings: print "Makepanda: "+x
- print "-------------------------------------------------------------------"
- print ""
- sys.stdout.flush()
- printStatus("Makepanda Initial Status Report", WARNINGS)
- ########################################################################
- ##
- ## CxxGetIncludes
- ##
- ## return a list of the include-directives in a given source file
- ##
- ########################################################################
- global CxxIncludeRegex
- CxxIncludeRegex = re.compile('^[ \t]*[#][ \t]*include[ \t]+"([^"]+)"[ \t\r\n]*$')
- def CxxGetIncludes(path):
- date = filedate(path)
- if (CXXINCLUDECACHE.has_key(path)):
- cached = CXXINCLUDECACHE[path]
- if (cached[0]==date): return cached[1]
- try: sfile = open(path, 'rb')
- except:
- exit("Cannot open source file \""+path+"\" for reading.")
- include = []
- for line in sfile:
- match = CxxIncludeRegex.match(line,0)
- if (match):
- incname = match.group(1)
- include.append(incname)
- sfile.close()
- CXXINCLUDECACHE[path] = [date, include]
- return include
- ########################################################################
- ##
- ## CxxFindSource
- ##
- ## given a source file name and a directory list, searches the
- ## directory list for the given source file. Returns the full
- ## pathname of the located file.
- ##
- ########################################################################
- def CxxFindSource(name, ipath):
- for dir in ipath:
- if (dir == "."): full = name
- else: full = dir + "/" + name
- if filedate(full) > 0: return full
- return 0
- ########################################################################
- ##
- ## CxxFindHeader
- ##
- ## given a source file name and an include directive in that source
- ## file, locates the relevant header file.
- ##
- ########################################################################
- def CxxFindHeader(srcfile, incfile, ipath):
- if (incfile[:1]=="."):
- last = srcfile.rfind("/")
- if (last < 0): exit("CxxFindHeader cannot handle this case #1")
- srcdir = srcfile[:last+1]
- while (incfile[:1]=="."):
- if (incfile[:2]=="./"):
- incfile = incfile[2:]
- elif (incfile[:3]=="../"):
- incfile = incfile[3:]
- last = srcdir[:-1].rfind("/")
- if (last < 0): exit("CxxFindHeader cannot handle this case #2")
- srcdir = srcdir[:last+1]
- else: exit("CxxFindHeader cannot handle this case #3")
- full = srcdir + incfile
- if filedate(full) > 0: return full
- return 0
- else: return CxxFindSource(incfile, ipath)
- ########################################################################
- ##
- ## CxxCalcDependencies(srcfile, ipath, ignore)
- ##
- ## Calculate the dependencies of a source file given a
- ## particular include-path. Any file in the list of files to
- ## ignore is not considered.
- ##
- ########################################################################
- global CxxIgnoreHeader
- global CxxDependencyCache
- CxxIgnoreHeader = {}
- CxxDependencyCache = {}
- def CxxCalcDependencies(srcfile, ipath, ignore):
- if (CxxDependencyCache.has_key(srcfile)):
- return CxxDependencyCache[srcfile]
- if (ignore.count(srcfile)): return []
- dep = {}
- dep[srcfile] = 1
- includes = CxxGetIncludes(srcfile)
- for include in includes:
- if (CxxIgnoreHeader.has_key(include)==0):
- header = CxxFindHeader(srcfile, include, ipath)
- if (header!=0):
- if (ignore.count(header)==0):
- hdeps = CxxCalcDependencies(header, ipath, [srcfile]+ignore)
- for x in hdeps: dep[x] = 1
- else:
- if (VERBOSE > 1):
- print "CAUTION: header file "+include+" cannot be found in "+srcfile+" IPATH="+str(ipath)
- result = dep.keys()
- CxxDependencyCache[srcfile] = result
- return result
- def CxxCalcDependenciesAll(srcfiles, ipath):
- dep = {}
- for srcfile in srcfiles:
- for x in CxxCalcDependencies(srcfile, ipath, []):
- dep[x] = 1
- return dep.keys()
- def ReadCvsEntries(dir):
- try:
- if (os.path.isfile(dir+"/CVS-Entries")):
- srchandle = open(dir+"/CVS-Entries", "r")
- else:
- srchandle = open(dir+"/CVS/Entries", "r")
- files = []
- for line in srchandle:
- if (line[0]=="/"):
- s = line.split("/",2)
- if (len(s)==3): files.append(s[1])
- srchandle.close()
- files.sort()
- return files
- except: return 0
- ########################################################################
- ##
- ## Routines to copy files into the build tree
- ##
- ########################################################################
- def CopyFile(dstfile,srcfile):
- if (dstfile[-1]=='/'):
- dstdir = dstfile
- fnl = srcfile.rfind("/")
- if (fnl < 0): fn = srcfile
- else: fn = srcfile[fnl+1:]
- dstfile = dstdir + fn
- if (NeedsBuild([dstfile],[srcfile])):
- global VERBOSE
- if VERBOSE >= 1:
- print "Copying \"%s\" --> \"%s\""%(srcfile, dstfile)
- WriteFile(dstfile,ReadFile(srcfile))
- JustBuilt([dstfile], [srcfile])
- def CopyAllFiles(dstdir, srcdir, suffix=""):
- suflen = len(suffix)
- files = os.listdir(srcdir)
- for x in files:
- if (os.path.isfile(srcdir+x)):
- if (suflen==0) or (x[-suflen:]==suffix):
- CopyFile(dstdir+x, srcdir+x)
- def CopyAllHeaders(dir, skip=[]):
- # get a list of headers
- dirlist = os.listdir(dir)
- dirlist.sort()
- files = fnmatch.filter(dirlist,"*.h")+fnmatch.filter(dirlist,"*.I")+fnmatch.filter(dirlist,"*.T")
- # actually copy the headers.
- copied = []
- if (skip!="ALL"):
- # even if you skip all, the warning-messages
- # about "x is not in CVS" are still useful.
- for filename in files:
- if (skip.count(filename)==0):
- srcfile = dir + "/" + filename
- dstfile = "built/include/" + filename
- if (NeedsBuild([dstfile],[srcfile])):
- copied.append(filename)
- WriteFile(dstfile,ReadFile(srcfile))
- JustBuilt([dstfile],[srcfile])
- # sanity check - do headers in directory match headers in CVS?
- cvsentries = ReadCvsEntries(dir)
- if (cvsentries != 0):
- cvsheaders = fnmatch.filter(cvsentries,"*.h")+fnmatch.filter(cvsentries,"*.I")+fnmatch.filter(cvsentries,"*.T")
- for x in SetDifference(files, cvsheaders):
- if ((skip=="ALL") or (skip.count(x)==0)):
- msg = "WARNING: header file %s is in your directory, but not in CVS"%(dir+"/"+x)
- print msg
- WARNINGS.append(msg)
- for x in SetDifference(cvsheaders, files):
- if ((skip=="ALL") or (skip.count(x)==0)):
- msg = "WARNING: header file %s is CVS, but not in your directory"%(dir+"/"+x)
- print msg
- WARNINGS.append(msg)
- def CopyTree(dstdir,srcdir):
- if (os.path.isdir(dstdir)): return 0
- if (COMPILER=="MSVC"): cmd = 'xcopy /I/Y/E/Q "' + srcdir + '" "' + dstdir + '"'
- if (COMPILER=="LINUX"): cmd = 'cp --recursive --force ' + srcdir + ' ' + dstdir
- oscmd(cmd)
- ########################################################################
- ##
- ## EnqueueCxx
- ##
- ########################################################################
- def CompileCxxMSVC(wobj,fullsrc,ipath,opts):
- cmd = "cl /wd4996 /Fo" + wobj + " /nologo /c"
- if (OMIT.count("PYTHON")==0): cmd = cmd + " /Ithirdparty/win-python/include"
- for ver in DXVERSIONS:
- if (PkgSelected(opts,"DX"+ver)):
- cmd = cmd + ' /I"' + DIRECTXSDK["DX"+ver] + '/include"'
- for ver in MAYAVERSIONS:
- if (PkgSelected(opts,"MAYA"+ver)):
- cmd = cmd + ' /I"' + MAYASDK["MAYA"+ver] + '/include"'
- for ver in MAXVERSIONS:
- if (PkgSelected(opts,"MAX"+ver)):
- cmd = cmd + ' /I"' + MAXSDK["MAX"+ver] + '/include" /I"' + MAXSDKCS["MAX"+ver] + '" /DMAX' + ver
- for pkg in PACKAGES:
- if (pkg[:4] != "MAYA") and (pkg[:3]!="MAX") and (pkg[:2]!="DX") and PkgSelected(opts,pkg):
- cmd = cmd + " /I" + THIRDPARTYLIBS + pkg.lower() + "/include"
- for x in ipath: cmd = cmd + " /I" + x
- if (opts.count('NOFLOATWARN')): cmd = cmd + ' /wd4244 /wd4305'
- if (opts.count("WITHINPANDA")): cmd = cmd + ' /DWITHIN_PANDA'
- if (opts.count("MSFORSCOPE")==0): cmd = cmd + ' /Zc:forScope'
- optlevel = getoptlevel(opts,OPTIMIZE)
- if (optlevel==1): cmd = cmd + " /MD /Zi /RTCs /GS"
- if (optlevel==2): cmd = cmd + " /MD /Zi "
- if (optlevel==3): cmd = cmd + " /MD /Zi /O2 /Ob2 /DFORCE_INLINING "
- if (optlevel==4): cmd = cmd + " /MD /Zi /Ox /Ob2 /DFORCE_INLINING /GL "
- cmd = cmd + " /Fd" + wobj[:-4] + ".pdb"
- building = getbuilding(opts)
- if (building): cmd = cmd + " /DBUILDING_" + building
- cmd = cmd + " /EHsc /Zm300 /DWIN32_VC /DWIN32 /W3 " + fullsrc
- oscmd(cmd)
- def CompileCxxLINUX(wobj,fullsrc,ipath,opts):
- if (fullsrc[-2:]==".c"): cmd = 'gcc -fPIC -c -o ' + wobj
- else: cmd = 'g++ -ftemplate-depth-30 -fPIC -c -o ' + wobj
- if (OMIT.count("PYTHON")==0): cmd = cmd + ' -I"' + PYTHONSDK + '"'
- if (PkgSelected(opts,"VRPN")): cmd = cmd + ' -I' + THIRDPARTYLIBS + 'vrpn/include'
- if (PkgSelected(opts,"FFTW")): cmd = cmd + ' -I' + THIRDPARTYLIBS + 'fftw/include'
- if (PkgSelected(opts,"FMODEX")): cmd = cmd + ' -I' + THIRDPARTYLIBS + 'fmodex/include'
- if (PkgSelected(opts,"NVIDIACG")): cmd = cmd + ' -I' + THIRDPARTYLIBS + 'nvidiacg/include'
- if (PkgSelected(opts,"NSPR")): cmd = cmd + ' -I' + THIRDPARTYLIBS + 'nspr/include'
- if (PkgSelected(opts,"FFMPEG")): cmd = cmd + ' -I' + THIRDPARTYLIBS + 'ffmpeg/include'
- if (PkgSelected(opts,"FREETYPE")): cmd = cmd + ' -I/usr/include/freetype2'
- for x in ipath: cmd = cmd + ' -I' + x
- if (opts.count("WITHINPANDA")): cmd = cmd + ' -DWITHIN_PANDA'
- optlevel = getoptlevel(opts,OPTIMIZE)
- if (optlevel==1): cmd = cmd + " -g"
- if (optlevel==2): cmd = cmd + " -O1"
- if (optlevel==3): cmd = cmd + " -O2"
- if (optlevel==4): cmd = cmd + " -O2"
- building = getbuilding(opts)
- if (building): cmd = cmd + " -DBUILDING_" + building
- cmd = cmd + ' ' + fullsrc
- oscmd(cmd)
- def EnqueueCxx(obj=0,src=0,ipath=[],opts=[],xdep=[]):
- if ((obj==0)|(src==0)):
- exit("syntax error in EnqueueCxx directive")
- if (COMPILER=="MSVC"):
- wobj = "built/tmp/"+obj
- fn = CompileCxxMSVC
- if (COMPILER=="LINUX"):
- wobj = "built/tmp/" + obj[:-4] + ".o"
- fn = CompileCxxLINUX
- ipath = ["built/tmp"] + ipath + ["built/include"]
- fullsrc = CxxFindSource(src, ipath)
- if (fullsrc == 0):
- exit("Cannot find source file "+src)
- dep = CxxCalcDependencies(fullsrc, ipath, []) + xdep
- DependencyQueue(fn, [wobj,fullsrc,ipath,opts], [wobj], dep, [])
- ########################################################################
- ##
- ## CompileBison
- ##
- ########################################################################
- def CompileBisonMSVC(pre, dsth, dstc, wobj, ipath, opts, src):
- ifile = os.path.basename(src)
- oscmd('thirdparty/win-util/bison -y -d -obuilt/tmp/'+ifile+'.c -p '+pre+' '+src)
- CopyFile(dstc, "built/tmp/"+ifile+".c")
- CopyFile(dsth, "built/tmp/"+ifile+".h")
- CompileCxxMSVC(wobj,dstc,ipath,opts)
- def CompileBisonLINUX(pre, dsth, dstc, wobj, ipath, opts, src):
- ifile = os.path.basename(src)
- oscmd("bison -y -d -obuilt/tmp/"+ifile+".c -p "+pre+" "+src)
- CopyFile(dstc, "built/tmp/"+ifile+".c")
- CopyFile(dsth, "built/tmp/"+ifile+".h")
- CompileCxxLINUX(wobj,dstc,ipath,opts)
- def EnqueueBison(ipath=0,opts=0,pre=0,obj=0,dsth=0,src=0):
- if ((ipath==0)|(opts==0)|(pre==0)|(obj==0)|(dsth==0)|(src==0)):
- exit("syntax error in EnqueueBison directive")
- if (COMPILER=="MSVC"):
- wobj="built/tmp/"+obj
- fn = CompileBisonMSVC
- if (COMPILER=="LINUX"):
- wobj="built/tmp/"+obj[:-4]+".o"
- fn = CompileBisonLINUX
- ipath = ["built/tmp"] + ipath + ["built/include"]
- fullsrc = CxxFindSource(src, ipath)
- if (fullsrc == 0):
- exit("Cannot find source file "+src)
- if (OMIT.count("BISON")):
- dir = os.path.dirname(fullsrc)
- CopyFile("built/tmp/"+obj[:-4]+".cxx", dir+"/"+src[:-4]+".cxx.prebuilt")
- CopyFile("built/include/"+src[:-4]+".h", dir+"/"+src[:-4]+".h.prebuilt")
- EnqueueCxx(ipath=ipath,opts=opts,obj=obj,src=obj[:-4]+".cxx")
- else:
- dstc = "built/tmp/"+obj[:-4]+".cxx"
- dsth = "built/include/"+src[:-4]+".h"
- CreatePlaceHolder(dsth)
- CreatePlaceHolder(dstc)
- DependencyQueue(fn, [pre,dsth,dstc,wobj,ipath,opts,fullsrc], [wobj, dsth], [fullsrc], [])
- ########################################################################
- ##
- ## CompileFlex
- ##
- ########################################################################
- def CompileFlexMSVC(pre,dst,src,wobj,ipath,opts,dashi):
- if (dashi): oscmd("thirdparty/win-util/flex -i -P" + pre + " -o"+dst+" "+src)
- else: oscmd("thirdparty/win-util/flex -P" + pre + " -o"+dst+" "+src)
- CompileCxxMSVC(wobj,dst,ipath,opts)
- def CompileFlexLINUX(pre,dst,src,wobj,ipath,opts,dashi):
- if (dashi): oscmd("flex -i -P" + pre + " -o"+dst+" "+src)
- else: oscmd("flex -P" + pre + " -o"+dst+" "+src)
- CompileCxxLINUX(wobj,dst,ipath,opts)
- def EnqueueFlex(ipath=0,opts=0,pre=0,obj=0,src=0,dashi=0):
- if ((ipath==0)|(opts==0)|(pre==0)|(obj==0)|(src==0)):
- exit("syntax error in EnqueueFlex directive")
- if (COMPILER=="MSVC"):
- wobj="built/tmp/"+obj[:-4]+".obj"
- fn=CompileFlexMSVC
- if (COMPILER=="LINUX"):
- wobj="built/tmp/"+obj[:-4]+".o"
- fn=CompileFlexLINUX
- ipath = ["built/tmp"] + ipath + ["built/include"]
- fullsrc = CxxFindSource(src, ipath)
- if (fullsrc == 0):
- exit("Cannot find source file "+src)
- if (OMIT.count("FLEX")):
- dir = os.path.dirname(fullsrc)
- CopyFile("built/tmp/"+obj[:-4]+".cxx", dir+"/"+src[:-4]+".cxx.prebuilt")
- EnqueueCxx(ipath=IPATH, opts=OPTS, obj=obj, src=obj[:-4]+".cxx")
- else:
- dst = "built/tmp/"+obj[:-4]+".cxx"
- CreatePlaceHolder(dst)
- DependencyQueue(fn, [pre,dst,fullsrc,wobj,ipath,opts,dashi], [wobj], [fullsrc], [])
- ########################################################################
- ##
- ## EnqueueIgate
- ##
- ########################################################################
- def CompileIgateMSVC(ipath,opts,outd,outc,wobj,src,module,library,files):
- if (OMIT.count("PYTHON")):
- WriteFile(outc,"")
- else:
- cmd = "built/bin/interrogate -srcdir "+src+" -I"+src
- cmd = cmd + ' -DCPPPARSER -D__STDC__=1 -D__cplusplus -longlong __int64 -D_X86_ -DWIN32_VC -D_WIN32'
- cmd = cmd + ' -D"_declspec(param)=" -D_near -D_far -D__near -D__far -D__stdcall'
- optlevel=getoptlevel(opts,OPTIMIZE)
- if (optlevel==1): cmd = cmd + ' '
- if (optlevel==2): cmd = cmd + ' '
- if (optlevel==3): cmd = cmd + ' -DFORCE_INLINING'
- if (optlevel==4): cmd = cmd + ' -DFORCE_INLINING'
- cmd = cmd + ' -Sbuilt/include/parser-inc'
- cmd = cmd + ' -Ithirdparty/win-python/include'
- for pkg in PACKAGES:
- if (PkgSelected(opts,pkg)):
- cmd = cmd + " -I" + THIRDPARTYLIBS + pkg.lower() + "/include"
- cmd = cmd + ' -oc ' + outc + ' -od ' + outd
- cmd = cmd + ' -fnames -string -refcount -assert -python-native'
- for x in ipath: cmd = cmd + ' -I' + x
- building = getbuilding(opts)
- if (building): cmd = cmd + " -DBUILDING_"+building
- if (opts.count("WITHINPANDA")): cmd = cmd + " -DWITHIN_PANDA"
- cmd = cmd + ' -module ' + module + ' -library ' + library
- for ver in DXVERSIONS:
- if ((COMPILER=="MSVC") and PkgSelected(opts,"DX"+ver)):
- cmd = cmd + ' -I"' + DIRECTXSDK["DX"+ver] + '/include"'
- for ver in MAYAVERSIONS:
- if ((COMPILER=="MSVC") and PkgSelected(opts,"MAYA"+ver)):
- cmd = cmd + ' -I"' + MAYASDK["MAYA"+ver] + '/include"'
- for x in files: cmd = cmd + ' ' + x
- oscmd(cmd)
- CompileCxxMSVC(wobj,outc,ipath,opts)
- def CompileIgateLINUX(ipath,opts,outd,outc,wobj,src,module,library,files):
- if (OMIT.count("PYTHON")):
- WriteFile(outc,"")
- else:
- cmd = 'built/bin/interrogate -srcdir '+src
- cmd = cmd + ' -DCPPPARSER -D__STDC__=1 -D__cplusplus -D__i386__ -D__const=const'
- optlevel = getoptlevel(opts,OPTIMIZE)
- if (optlevel==1): cmd = cmd + ' '
- if (optlevel==2): cmd = cmd + ' '
- if (optlevel==3): cmd = cmd + ' '
- if (optlevel==4): cmd = cmd + ' '
- cmd = cmd + ' -Sbuilt/include/parser-inc -S/usr/include'
- cmd = cmd + ' -Ithirdparty/win-python/include'
- for pkg in PACKAGES:
- if (PkgSelected(opts,pkg)):
- cmd = cmd + " -I" + THIRDPARTYLIBS + pkg.lower() + "/include"
- cmd = cmd + ' -oc ' + outc + ' -od ' + outd
- cmd = cmd + ' -fnames -string -refcount -assert -python-native'
- for x in ipath: cmd = cmd + ' -I' + x
- building = getbuilding(opts)
- if (building): cmd = cmd + " -DBUILDING_"+building
- if (opts.count("WITHINPANDA")): cmd = cmd + " -DWITHIN_PANDA"
- cmd = cmd + ' -module ' + module + ' -library ' + library
- for ver in MAYAVERSIONS:
- if (PkgSelected(opts, "MAYA"+ver)):
- cmd = cmd + ' -I"' + MAYASDK["MAYA"+ver] + '/include"'
- for x in files: cmd = cmd + ' ' + x
- oscmd(cmd)
- CompileCxxLINUX(wobj,outc,ipath,opts)
- def EnqueueIgate(ipath=0, opts=0, outd=0, obj=0, src=0, module=0, library=0, also=0, skip=0):
- if ((ipath==0)|(opts==0)|(outd==0)|(obj==0)|(src==0)|(module==0)|(library==0)|(also==0)|(skip==0)):
- exit("syntax error in EnqueueIgate directive")
- if (COMPILER=="MSVC"):
- altdep = "built/bin/interrogate.exe"
- wobj = "built/tmp/"+obj
- fn = CompileIgateMSVC
- if (COMPILER=="LINUX"):
- altdep = "built/bin/interrogate"
- wobj = "built/tmp/"+obj[:-4]+".o"
- fn = CompileIgateLINUX
- outd = 'built/pandac/input/'+outd
- dirlisting = os.listdir(src)
- files = fnmatch.filter(dirlisting,"*.h")
- if (skip=='ALL'): files=[]
- else:
- files.sort()
- for x in skip:
- if (files.count(x)!=0): files.remove(x)
- for x in also: files.append(x)
- ipath = ["built/tmp"] + ipath + ["built/include"]
- dep = ["built/tmp/dtool_have_python.dat"]
- dep = dep + CxxCalcDependenciesAll(xpaths(src+"/",files,""), ipath)
- outc = "built/tmp/"+obj[:-4]+".cxx"
- DependencyQueue(fn, [ipath,opts,outd,outc,wobj,src,module,library,files], [wobj, outd], dep, [altdep])
- ########################################################################
- ##
- ## EnqueueImod
- ##
- ########################################################################
- def CompileImodMSVC(outc, wobj, module, library, ipath, opts, files):
- if (OMIT.count("PYTHON")):
- WriteFile(outc,"")
- else:
- cmd = 'built/bin/interrogate_module '
- cmd = cmd + ' -oc ' + outc + ' -module ' + module + ' -library ' + library + ' -python-native '
- for x in files: cmd = cmd + ' ' + x
- oscmd(cmd)
- CompileCxxMSVC(wobj,outc,ipath,opts)
- def CompileImodLINUX(outc, wobj, module, library, ipath, opts, files):
- if (OMIT.count("PYTHON")):
- WriteFile(outc,"")
- else:
- cmd = 'built/bin/interrogate_module '
- cmd = cmd + ' -oc ' + outc + ' -module ' + module + ' -library ' + library + ' -python-native '
- for x in files: cmd = cmd + ' ' + x
- oscmd(cmd)
- CompileCxxLINUX(wobj,outc,ipath,opts)
- def EnqueueImod(ipath=0, opts=0, obj=0, module=0, library=0, files=0):
- if ((ipath==0)|(opts==0)|(obj==0)|(module==0)|(library==0)|(files==0)):
- exit("syntax error in EnqueueImod directive")
- if (COMPILER=="MSVC"):
- altdep = "built/bin/interrogate_module.exe"
- wobj = "built/tmp/"+obj[:-4]+".obj"
- fn = CompileImodMSVC
- if (COMPILER=="LINUX"):
- altdep = "built/bin/interrogate_module"
- wobj = "built/tmp/"+obj[:-4]+".o"
- fn = CompileImodLINUX
- ipath = ["built/tmp"] + ipath + ["built/include"]
- outc = "built/tmp/"+obj[:-4]+".cxx"
- files = xpaths("built/pandac/input/",files,"")
- dep = files + ["built/tmp/dtool_have_python.dat"]
- DependencyQueue(fn, [outc, wobj, module, library, ipath, opts, files], [wobj], dep, [altdep])
- ########################################################################
- ##
- ## EnqueueLib
- ##
- ########################################################################
- def CompileLibMSVC(wlib, wobj, opts):
- cmd = 'link /lib /nologo /OUT:' + wlib
- optlevel = getoptlevel(opts,OPTIMIZE)
- if (optlevel==4): cmd = cmd + " /LTCG "
- for x in wobj: cmd = cmd + ' ' + x
- oscmd(cmd)
- def CompileLibLINUX(wlib, wobj, opts):
- cmd = 'ar cru ' + wlib
- for x in wobj: cmd=cmd + ' ' + x
- oscmd(cmd)
- def EnqueueLib(lib=0, obj=[], opts=[]):
- if (lib==0): exit("syntax error in EnqueueLib directive")
- if (COMPILER=="MSVC"):
- if (lib[-4:]==".ilb"): wlib = "built/tmp/" + lib[:-4] + ".lib"
- else: wlib = "built/lib/" + lib[:-4] + ".lib"
- wobj = xpaths("built/tmp/",obj,"")
- DependencyQueue(CompileLibMSVC, [wlib, wobj, opts], [wlib], wobj, [])
- if (COMPILER=="LINUX"):
- if (lib[-4:]==".ilb"): wlib = "built/tmp/" + lib[:-4] + ".a"
- else: wlib = "built/lib/" + lib[:-4] + ".a"
- wobj = []
- for x in obj: wobj.append("built/tmp/" + x[:-4] + ".o")
- DependencyQueue(CompileLibLINUX, [wlib, wobj, opts], [wlib], wobj, [])
- ########################################################################
- ##
- ## EnqueueLink
- ##
- ########################################################################
- def CompileLinkMSVC(wdll, wlib, wobj, opts, dll, ldef):
- cmd = 'link /nologo /NODEFAULTLIB:LIBCI.LIB /NODEFAULTLIB:MSVCRTD.LIB /DEBUG '
- if (THIRDPARTYLIBS=="thirdparty/win-libs-vc8/"): cmd = cmd + " /nod:libc /nod:libcmtd"
- if (wdll[-4:]!=".exe"): cmd = cmd + " /DLL"
- optlevel = getoptlevel(opts,OPTIMIZE)
- if (optlevel==1): cmd = cmd + " /MAP /MAPINFO:LINES /MAPINFO:EXPORTS"
- if (optlevel==2): cmd = cmd + " /MAP:NUL "
- if (optlevel==3): cmd = cmd + " /MAP:NUL "
- if (optlevel==4): cmd = cmd + " /MAP:NUL /LTCG "
- cmd = cmd + " /FIXED:NO /OPT:REF /STACK:4194304 /INCREMENTAL:NO "
- if (ldef!=0): cmd = cmd + ' /DEF:"' + ldef + '"'
- cmd = cmd + ' /OUT:' + wdll
- if (wlib != 0): cmd = cmd + ' /IMPLIB:' + wlib
- if (OMIT.count("PYTHON")==0): cmd = cmd + ' /LIBPATH:thirdparty/win-python/libs '
- for x in wobj: cmd = cmd + ' ' + x
- if (wdll[-4:]==".exe"): cmd = cmd + ' panda/src/configfiles/pandaIcon.obj'
- for ver in DXVERSIONS:
- if (PkgSelected(opts,"DX"+ver)):
- cmd = cmd + ' /LIBPATH:"' + DIRECTXSDK["DX"+ver] + '/lib/x86"'
- cmd = cmd + ' /LIBPATH:"' + DIRECTXSDK["DX"+ver] + '/lib"'
- cmd = cmd + ' d3dVER.lib d3dxVER.lib dxerrVER.lib ddraw.lib dxguid.lib'.replace("VER",ver)
- if (opts.count("WINSOCK")): cmd = cmd + " wsock32.lib"
- if (opts.count("WINSOCK2")): cmd = cmd + " wsock32.lib ws2_32.lib"
- if (opts.count("WINCOMCTL")): cmd = cmd + ' comctl32.lib'
- if (opts.count("WINCOMDLG")): cmd = cmd + ' comdlg32.lib'
- if (opts.count("WINUSER")): cmd = cmd + " user32.lib"
- if (opts.count("WINMM")): cmd = cmd + " winmm.lib"
- if (opts.count("WINIMM")): cmd = cmd + " imm32.lib"
- if (opts.count("WINKERNEL")): cmd = cmd + " kernel32.lib"
- if (opts.count("WINOLDNAMES")): cmd = cmd + " oldnames.lib"
- if (opts.count("WINGDI")): cmd = cmd + " gdi32.lib"
- if (opts.count("ADVAPI")): cmd = cmd + " advapi32.lib"
- if (opts.count("GLUT")): cmd = cmd + " opengl32.lib glu32.lib"
- if (PkgSelected(opts,"ZLIB")): cmd = cmd + ' ' + THIRDPARTYLIBS + 'zlib/lib/libpandazlib1.lib'
- if (PkgSelected(opts,"PNG")): cmd = cmd + ' ' + THIRDPARTYLIBS + 'png/lib/libpandapng13.lib'
- if (PkgSelected(opts,"JPEG")): cmd = cmd + ' ' + THIRDPARTYLIBS + 'jpeg/lib/libpandajpeg.lib'
- if (PkgSelected(opts,"TIFF")): cmd = cmd + ' ' + THIRDPARTYLIBS + 'tiff/lib/libpandatiff.lib'
- if (PkgSelected(opts,"VRPN")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'vrpn/lib/vrpn.lib'
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'vrpn/lib/quat.lib'
- if (PkgSelected(opts,"FMODEX")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'fmodex/lib/fmodex_vc.lib'
- if (PkgSelected(opts,"MILES")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'miles/lib/mss32.lib'
- if (PkgSelected(opts,"NVIDIACG")):
- if (opts.count("CGGL")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'nvidiacg/lib/cgGL.lib'
- if (opts.count("CGDX9")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'nvidiacg/lib/cgD3D9.lib'
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'nvidiacg/lib/cg.lib'
- if (PkgSelected(opts,"NSPR")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'nspr/lib/nspr4.lib'
- if (PkgSelected(opts,"OPENSSL")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'openssl/lib/libpandassl.lib'
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'openssl/lib/libpandaeay.lib'
- if (PkgSelected(opts,"FREETYPE")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'freetype/lib/freetype.lib'
- if (PkgSelected(opts,"FFTW")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'fftw/lib/rfftw.lib'
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'fftw/lib/fftw.lib'
- if (PkgSelected(opts,"FFMPEG")):
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'ffmpeg/lib/avcodec-51-panda.lib'
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'ffmpeg/lib/avformat-50-panda.lib'
- cmd = cmd + ' ' + THIRDPARTYLIBS + 'ffmpeg/lib/avutil-49-panda.lib'
- for ver in MAYAVERSIONS:
- if (PkgSelected(opts,"MAYA"+ver)):
- cmd = cmd + ' "' + MAYASDK["MAYA"+ver] + '/lib/Foundation.lib"'
- cmd = cmd + ' "' + MAYASDK["MAYA"+ver] + '/lib/OpenMaya.lib"'
- cmd = cmd + ' "' + MAYASDK["MAYA"+ver] + '/lib/OpenMayaAnim.lib"'
- cmd = cmd + ' "' + MAYASDK["MAYA"+ver] + '/lib/OpenMayaUI.lib"'
- for ver in MAXVERSIONS:
- if (PkgSelected(opts,"MAX"+ver)):
- cmd = cmd + ' "' + MAXSDK["MAX"+ver] + '/lib/core.lib"'
- cmd = cmd + ' "' + MAXSDK["MAX"+ver] + '/lib/edmodel.lib"'
- cmd = cmd + ' "' + MAXSDK["MAX"+ver] + '/lib/gfx.lib"'
- cmd = cmd + ' "' + MAXSDK["MAX"+ver] + '/lib/geom.lib"'
- cmd = cmd + ' "' + MAXSDK["MAX"+ver] + '/lib/mesh.lib"'
- cmd = cmd + ' "' + MAXSDK["MAX"+ver] + '/lib/maxutil.lib"'
- cmd = cmd + ' "' + MAXSDK["MAX"+ver] + '/lib/paramblk2.lib"'
- oscmd(cmd)
- def CompileLinkLINUX(wdll, obj, wobj, opts, dll, ldef):
- if (dll[-4:]==".exe"): cmd = 'g++ -o ' + wdll + ' -Lbuilt/lib -L/usr/X11R6/lib'
- else: cmd = 'g++ -shared -o ' + wdll + ' -Lbuilt/lib -L/usr/X11R6/lib'
- for x in obj:
- suffix = x[-4:]
- if (suffix==".obj"): cmd = cmd + ' built/tmp/' + x[:-4] + '.o'
- elif (suffix==".dll"): cmd = cmd + ' -l' + x[3:-4]
- elif (suffix==".lib"): cmd = cmd + ' built/lib/' + x[:-4] + '.a'
- elif (suffix==".ilb"): cmd = cmd + ' built/tmp/' + x[:-4] + '.a'
- if (PkgSelected(opts,"FMODEX")): cmd = cmd + ' -L' + THIRDPARTYLIBS + 'fmodex/lib -lfmodex'
- if (PkgSelected(opts,"NVIDIACG")):
- cmd = cmd + ' -Lthirdparty/nvidiacg/lib '
- if (opts.count("CGGL")): cmd = cmd + " -lCgGL"
- cmd = cmd + " -lCg"
- if (PkgSelected(opts,"NSPR")): cmd = cmd + ' -L' + THIRDPARTYLIBS + 'nspr/lib -lpandanspr4'
- if (PkgSelected(opts,"FFMPEG")): cmd = cmd + ' -L' + THIRDPARTYLIBS + 'ffmpeg/lib -lavformat -lavcodec -lavformat -lavutil'
- if (PkgSelected(opts,"ZLIB")): cmd = cmd + " -lz"
- if (PkgSelected(opts,"PNG")): cmd = cmd + " -lpng"
- if (PkgSelected(opts,"JPEG")): cmd = cmd + " -ljpeg"
- if (PkgSelected(opts,"TIFF")): cmd = cmd + " -ltiff"
- if (PkgSelected(opts,"OPENSSL")): cmd = cmd + " -lssl"
- if (PkgSelected(opts,"FREETYPE")): cmd = cmd + " -lfreetype"
- if (PkgSelected(opts,"VRPN")): cmd = cmd + ' -L' + THIRDPARTYLIBS + 'vrpn/lib -lvrpn -lquat'
- if (PkgSelected(opts,"FFTW")): cmd = cmd + ' -L' + THIRDPARTYLIBS + 'fftw/lib -lrfftw -lfftw'
- if (opts.count("GLUT")): cmd = cmd + " -lGL -lGLU"
- oscmd(cmd)
- def EnqueueLink(dll=0, obj=[], opts=[], xdep=[], ldef=0):
- if (dll==0): exit("syntax error in EnqueueLink directive")
- if (COMPILER=="MSVC"):
- wobj = []
- for x in obj:
- suffix = x[-4:]
- if (suffix==".obj"): wobj.append("built/tmp/"+x)
- elif (suffix==".dll"): wobj.append("built/lib/"+x[:-4]+".lib")
- elif (suffix==".lib"): wobj.append("built/lib/"+x)
- elif (suffix==".ilb"): wobj.append("built/tmp/"+x[:-4]+".lib")
- else: exit("unknown suffix in object list.")
- if (dll[-4:]==".exe"):
- wdll = "built/bin/"+dll
- DependencyQueue(CompileLinkMSVC, [wdll, 0, wobj, opts, dll, ldef], [wdll], wobj, [])
- elif (dll[-4:]==".dll"):
- wdll = "built/bin/"+dll
- wlib = "built/lib/"+dll[:-4]+".lib"
- DependencyQueue(CompileLinkMSVC, [wdll, wlib, wobj, opts, dll, ldef], [wdll, wlib], wobj, [])
- else:
- wdll = "built/plugins/"+dll
- DependencyQueue(CompileLinkMSVC, [wdll, 0, wobj, opts, dll, ldef], [wdll], wobj, [])
- if (COMPILER=="LINUX"):
- if (dll[-4:]==".exe"): wdll = "built/bin/"+dll[:-4]
- else: wdll = "built/lib/"+dll[:-4]+".so"
- wobj = []
- for x in obj:
- suffix = x[-4:]
- if (suffix==".obj"): wobj.append("built/tmp/"+x[:-4]+".o")
- elif (suffix==".dll"): wobj.append("built/lib/"+x[:-4]+".so")
- elif (suffix==".lib"): wobj.append("built/lib/"+x[:-4]+".a")
- elif (suffix==".ilb"): wobj.append("built/tmp/"+x[:-4]+".a")
- else: exit("unknown suffix in object list.")
- DependencyQueue(CompileLinkLINUX, [wdll, obj, wobj, opts, dll, ldef], [wdll], wobj, [])
- ##########################################################################################
- #
- # EnqueueBam
- #
- ##########################################################################################
- def CompileBam(preconv, bam, egg):
- if (egg[-4:] == ".flt"):
- ifile = os.path.basename(egg)
- oscmd("built/bin/flt2egg " + preconv + " -o built/tmp/"+ifile+".egg" + " " + egg)
- oscmd("built/bin/egg2bam -o " + bam + " built/tmp/"+ifile+".egg")
- else:
- oscmd("built/bin/egg2bam " + preconv + " -o " + bam + " " + egg)
- def EnqueueBam(preconv, bam, egg):
- if (sys.platform == "win32"):
- flt2egg = "built/bin/flt2egg.exe"
- egg2bam = "built/bin/egg2bam.exe"
- else:
- flt2egg = "built/bin/flt2egg"
- egg2bam = "built/bin/egg2bam"
- DependencyQueue(CompileBam, [preconv, bam, egg], [bam], [egg], [flt2egg, egg2bam])
- ##########################################################################################
- #
- # If the 'make depend' process discovers an 'include'
- # directive that includes one of the following files,
- # the specified file is not added as a dependency,
- # nor is it traversed.
- #
- ##########################################################################################
- CxxIgnoreHeader["Python.h"] = 1
- CxxIgnoreHeader["Python/Python.h"] = 1
- CxxIgnoreHeader["Cg/cg.h"] = 1
- CxxIgnoreHeader["Cg/cgGL.h"] = 1
- CxxIgnoreHeader["alloc.h"] = 1
- CxxIgnoreHeader["ctype.h"] = 1
- CxxIgnoreHeader["stdlib.h"] = 1
- CxxIgnoreHeader["ipc_thread.h"] = 1
- CxxIgnoreHeader["platform/symbian/symbian_print.h"] = 1
- CxxIgnoreHeader["hxtypes.h"] = 1
- CxxIgnoreHeader["hxcom.h"] = 1
- CxxIgnoreHeader["hxiids.h"] = 1
- CxxIgnoreHeader["hxpiids.h"] = 1
- CxxIgnoreHeader["dsound.h"] = 1
- CxxIgnoreHeader["hlxosstr.h"] = 1
- CxxIgnoreHeader["ddraw.h"] = 1
- CxxIgnoreHeader["mss.h"] = 1
- CxxIgnoreHeader["MacSocket.h"] = 1
- CxxIgnoreHeader["textureTransition.h"] = 1
- CxxIgnoreHeader["transformTransition.h"] = 1
- CxxIgnoreHeader["billboardTransition.h"] = 1
- CxxIgnoreHeader["transformTransition.h"] = 1
- CxxIgnoreHeader["transparencyTransition.h"] = 1
- CxxIgnoreHeader["allTransitionsWrapper.h"] = 1
- CxxIgnoreHeader["allTransitionsWrapper.h"] = 1
- CxxIgnoreHeader["namedNode.h"] = 1
- CxxIgnoreHeader["renderRelation.h"] = 1
- CxxIgnoreHeader["renderTraverser.h"] = 1
- CxxIgnoreHeader["get_rel_pos.h"] = 1
- # Ignore Windows headers.
- CxxIgnoreHeader["windows.h"] = 1
- CxxIgnoreHeader["windef.h"] = 1
- CxxIgnoreHeader["afxres.h"] = 1
- # Ignore MAX headers
- CxxIgnoreHeader["Max.h"] = 1
- CxxIgnoreHeader["iparamb2.h"] = 1
- CxxIgnoreHeader["iparamm2.h"] = 1
- CxxIgnoreHeader["istdplug.h"] = 1
- CxxIgnoreHeader["iskin.h"] = 1
- CxxIgnoreHeader["stdmat.h"] = 1
- CxxIgnoreHeader["phyexp.h"] = 1
- CxxIgnoreHeader["bipexp.h"] = 1
- CxxIgnoreHeader["modstack.h"] = 1
- CxxIgnoreHeader["decomp.h"] = 1
- CxxIgnoreHeader["shape.h"] = 1
- CxxIgnoreHeader["simpobj.h"] = 1
- CxxIgnoreHeader["surf_api.h"] = 1
- # OpenSSL headers
- CxxIgnoreHeader["openssl/evp.h"] = 1
- CxxIgnoreHeader["openssl/rand.h"] = 1
- CxxIgnoreHeader["openssl/md5.h"] = 1
- CxxIgnoreHeader["openssl/err.h"] = 1
- CxxIgnoreHeader["openssl/ssl.h"] = 1
- CxxIgnoreHeader["openssl/pem.h"] = 1
- CxxIgnoreHeader["openssl/rsa.h"] = 1
- CxxIgnoreHeader["openssl/bio.h"] = 1
- CxxIgnoreHeader["openssl/x509.h"] = 1
- # STD headers
- CxxIgnoreHeader["map"] = 1
- CxxIgnoreHeader["vector"] = 1
- CxxIgnoreHeader["set"] = 1
- CxxIgnoreHeader["algorithm"] = 1
- ##########################################################################################
- #
- # Create the directory tree
- #
- ##########################################################################################
- MakeDirectory("built")
- MakeDirectory("built/bin")
- MakeDirectory("built/lib")
- MakeDirectory("built/etc")
- MakeDirectory("built/plugins")
- MakeDirectory("built/include")
- MakeDirectory("built/include/parser-inc")
- MakeDirectory("built/include/parser-inc/openssl")
- MakeDirectory("built/include/parser-inc/Cg")
- MakeDirectory("built/include/openssl")
- MakeDirectory("built/tmp")
- MakeDirectory("built/models")
- MakeDirectory("built/models/audio")
- MakeDirectory("built/models/audio/sfx")
- MakeDirectory("built/models/icons")
- MakeDirectory("built/models/maps")
- MakeDirectory("built/models/misc")
- MakeDirectory("built/models/gui")
- if (OMIT.count("PYTHON")==0):
- MakeDirectory("built/direct")
- MakeDirectory("built/pandac")
- MakeDirectory("built/pandac/input")
- ##########################################################################################
- #
- # Generate dtool_config.h and dtool_have_xxx.dat
- #
- ##########################################################################################
- DTOOLDEFAULTS=[
- #_Variable_________________________Windows___________________Unix__________
- ("HAVE_PYTHON", '1', '1'),
- ("PYTHON_FRAMEWORK", 'UNDEF', 'UNDEF'),
- ("COMPILE_IN_DEFAULT_FONT", '1', '1'),
- ("HAVE_MAYA", '1', '1'),
- ("MAYA_PRE_5_0", 'UNDEF', 'UNDEF'),
- ("HAVE_SOFTIMAGE", 'UNDEF', 'UNDEF'),
- ("SSL_097", 'UNDEF', 'UNDEF'),
- ("REPORT_OPENSSL_ERRORS", '1', '1'),
- ("HAVE_GL", '1', '1'),
- ("HAVE_MESA", 'UNDEF', 'UNDEF'),
- ("MESA_MGL", 'UNDEF', 'UNDEF'),
- ("HAVE_SGIGL", 'UNDEF', 'UNDEF'),
- ("HAVE_GLX", 'UNDEF', '1'),
- ("HAVE_WGL", '1', 'UNDEF'),
- ("HAVE_DX", '1', 'UNDEF'),
- ("HAVE_CHROMIUM", 'UNDEF', 'UNDEF'),
- ("HAVE_THREADS", 'UNDEF', 'UNDEF'),
- ("HAVE_AUDIO", '1', '1'),
- ("NOTIFY_DEBUG", 'UNDEF', 'UNDEF'),
- ("DO_PSTATS", 'UNDEF', 'UNDEF'),
- ("DO_COLLISION_RECORDING", 'UNDEF', 'UNDEF'),
- ("TRACK_IN_INTERPRETER", 'UNDEF', 'UNDEF'),
- ("DO_MEMORY_USAGE", 'UNDEF', 'UNDEF'),
- ("DO_PIPELINING", 'UNDEF', 'UNDEF'),
- ("EXPORT_TEMPLATES", 'yes', 'yes'),
- ("LINK_IN_GL", 'UNDEF', 'UNDEF'),
- ("LINK_IN_PHYSICS", 'UNDEF', 'UNDEF'),
- ("DEFAULT_PATHSEP", '";"', '":"'),
- ("DEFAULT_PRC_DIR", '"<auto>etc"', '"<auto>etc"'),
- ("PRC_DIR_ENVVARS", '"PANDA_PRC_DIR"', '"PANDA_PRC_DIR"'),
- ("PRC_PATH_ENVVARS", '"PANDA_PRC_PATH"', '"PANDA_PRC_PATH"'),
- ("PRC_PATTERNS", '"*.prc"', '"*.prc"'),
- ("PRC_EXECUTABLE_PATTERNS", '""', '""'),
- ("PRC_EXECUTABLE_ARGS_ENVVAR", '"PANDA_PRC_XARGS"', '"PANDA_PRC_XARGS"'),
- ("PRC_PUBLIC_KEYS_FILENAME", '""', '""'),
- ("PRC_RESPECT_TRUST_LEVEL", 'UNDEF', 'UNDEF'),
- ("PRC_SAVE_DESCRIPTIONS", '1', '1'),
- ("WORDS_BIGENDIAN", 'UNDEF', 'UNDEF'),
- ("HAVE_NAMESPACE", '1', '1'),
- ("HAVE_OPEN_MASK", 'UNDEF', 'UNDEF'),
- ("HAVE_WCHAR_T", '1', '1'),
- ("HAVE_WSTRING", '1', '1'),
- ("HAVE_TYPENAME", '1', '1'),
- ("SIMPLE_STRUCT_POINTERS", '1', 'UNDEF'),
- ("HAVE_DINKUM", 'UNDEF', 'UNDEF'),
- ("HAVE_STL_HASH", 'UNDEF', 'UNDEF'),
- ("HAVE_GETTIMEOFDAY", 'UNDEF', '1'),
- ("GETTIMEOFDAY_ONE_PARAM", 'UNDEF', 'UNDEF'),
- ("HAVE_GETOPT", 'UNDEF', '1'),
- ("HAVE_GETOPT_LONG_ONLY", 'UNDEF', '1'),
- ("HAVE_GETOPT_H", 'UNDEF', '1'),
- ("IOCTL_TERMINAL_WIDTH", 'UNDEF', '1'),
- ("HAVE_STREAMSIZE", '1', '1'),
- ("HAVE_IOS_TYPEDEFS", '1', '1'),
- ("HAVE_IOS_BINARY", '1', '1'),
- ("STATIC_INIT_GETENV", '1', 'UNDEF'),
- ("HAVE_PROC_SELF_EXE", 'UNDEF', '1'),
- ("HAVE_PROC_SELF_MAPS", 'UNDEF', '1'),
- ("HAVE_PROC_SELF_ENVIRON", 'UNDEF', '1'),
- ("HAVE_PROC_SELF_CMDLINE", 'UNDEF', '1'),
- ("HAVE_GLOBAL_ARGV", '1', 'UNDEF'),
- ("PROTOTYPE_GLOBAL_ARGV", 'UNDEF', 'UNDEF'),
- ("GLOBAL_ARGV", '__argv', 'UNDEF'),
- ("GLOBAL_ARGC", '__argc', 'UNDEF'),
- ("HAVE_IO_H", '1', 'UNDEF'),
- ("HAVE_IOSTREAM", '1', '1'),
- ("HAVE_MALLOC_H", '1', '1'),
- ("HAVE_SYS_MALLOC_H", 'UNDEF', 'UNDEF'),
- ("HAVE_ALLOCA_H", 'UNDEF', '1'),
- ("HAVE_LOCALE_H", 'UNDEF', '1'),
- ("HAVE_MINMAX_H", '1', 'UNDEF'),
- ("HAVE_SSTREAM", '1', '1'),
- ("HAVE_NEW", '1', '1'),
- ("HAVE_SYS_TYPES_H", '1', '1'),
- ("HAVE_SYS_TIME_H", 'UNDEF', '1'),
- ("HAVE_UNISTD_H", 'UNDEF', '1'),
- ("HAVE_UTIME_H", 'UNDEF', '1'),
- ("HAVE_GLOB_H", 'UNDEF', '1'),
- ("HAVE_DIRENT_H", 'UNDEF', '1'),
- ("HAVE_SYS_SOUNDCARD_H", 'UNDEF', '1'),
- ("HAVE_RTTI", '1', '1'),
- ("GLOBAL_OPERATOR_NEW_EXCEPTIONS", 'UNDEF', '1'),
- ("USE_STL_ALLOCATOR", '1', '1'),
- ("USE_MEMORY_DLMALLOC", '1', 'UNDEF'),
- ("USE_MEMORY_PTMALLOC", 'UNDEF', 'UNDEF'),
- ("USE_MEMORY_MALLOC", 'UNDEF', '1'),
- ("HAVE_ZLIB", 'UNDEF', 'UNDEF'),
- ("HAVE_PNG", 'UNDEF', 'UNDEF'),
- ("HAVE_JPEG", 'UNDEF', 'UNDEF'),
- ("HAVE_TIFF", 'UNDEF', 'UNDEF'),
- ("HAVE_VRPN", 'UNDEF', 'UNDEF'),
- ("HAVE_FMODEX", 'UNDEF', 'UNDEF'),
- ("HAVE_NVIDIACG", 'UNDEF', 'UNDEF'),
- ("HAVE_NSPR", 'UNDEF', 'UNDEF'),
- ("HAVE_FREETYPE", 'UNDEF', 'UNDEF'),
- ("HAVE_FFTW", 'UNDEF', 'UNDEF'),
- ("HAVE_OPENSSL", 'UNDEF', 'UNDEF'),
- ("HAVE_NET", 'UNDEF', 'UNDEF'),
- ("HAVE_CG", 'UNDEF', 'UNDEF'),
- ("HAVE_CGGL", 'UNDEF', 'UNDEF'),
- ("HAVE_CGDX9", 'UNDEF', 'UNDEF'),
- ("HAVE_FFMPEG", 'UNDEF', 'UNDEF'),
- ]
- def CalculateDtoolConfig():
- dtoolconfig={}
- if (sys.platform == "win32"):
- for key,win,unix in DTOOLDEFAULTS:
- dtoolconfig[key] = win
- else:
- for key,win,unix in DTOOLDEFAULTS:
- dtoolconfig[key] = unix
-
- for x in PACKAGES:
- if (OMIT.count(x)==0):
- if (dtoolconfig.has_key("HAVE_"+x)):
- dtoolconfig["HAVE_"+x] = '1'
-
- dtoolconfig["HAVE_NET"] = dtoolconfig["HAVE_NSPR"]
-
- if (OMIT.count("NVIDIACG")==0):
- dtoolconfig["HAVE_CG"] = '1'
- dtoolconfig["HAVE_CGGL"] = '1'
- dtoolconfig["HAVE_CGDX9"] = '1'
-
- if (OPTIMIZE <= 3):
- if (dtoolconfig["HAVE_NET"] != 'UNDEF'):
- dtoolconfig["DO_PSTATS"] = '1'
-
- if (OPTIMIZE <= 3):
- dtoolconfig["DO_COLLISION_RECORDING"] = '1'
-
- #if (OPTIMIZE <= 2):
- # dtoolconfig["TRACK_IN_INTERPRETER"] = '1'
-
- if (OPTIMIZE <= 3):
- dtoolconfig["DO_MEMORY_USAGE"] = '1'
-
- #if (OPTIMIZE <= 1):
- # dtoolconfig["DO_PIPELINING"] = '1'
-
- if (OPTIMIZE <= 3):
- dtoolconfig["NOTIFY_DEBUG"] = '1'
-
- conf = "/* dtool_config.h. Generated automatically by makepanda.py */\n"
- for key,win,unix in DTOOLDEFAULTS:
- val = dtoolconfig[key]
- if (val == 'UNDEF'): conf = conf + "#undef " + key + "\n"
- else: conf = conf + "#define " + key + " " + val + "\n"
- return conf
- for x in PACKAGES:
- if (OMIT.count(x)): ConditionalWriteFile('built/tmp/dtool_have_'+x.lower()+'.dat',"0\n")
- else: ConditionalWriteFile('built/tmp/dtool_have_'+x.lower()+'.dat',"1\n")
- ConditionalWriteFile('built/include/dtool_config.h', CalculateDtoolConfig())
- ##########################################################################################
- #
- # Generate pandaVersion.h, pythonversion, null.cxx
- #
- ##########################################################################################
- PANDAVERSION_H="""
- #define PANDA_MAJOR_VERSION VERSION1
- #define PANDA_MINOR_VERSION VERSION2
- #define PANDA_SEQUENCE_VERSION VERSION2
- #undef PANDA_OFFICIAL_VERSION
- #define PANDA_VERSION NVERSION
- #define PANDA_VERSION_STR "VERSION1.VERSION2.VERSION3"
- #define PANDA_DISTRIBUTOR "makepanda"
- """
- CHECKPANDAVERSION_CXX="""
- # include "dtoolbase.h"
- EXPCL_DTOOL int panda_version_VERSION1_VERSION2_VERSION3 = 0;
- """
- CHECKPANDAVERSION_H="""
- # include "dtoolbase.h"
- extern EXPCL_DTOOL int panda_version_VERSION1_VERSION2_VERSION3;
- # ifndef WIN32
- /* For Windows, exporting the symbol from the DLL is sufficient; the
- DLL will not load unless all expected public symbols are defined.
- Other systems may not mind if the symbol is absent unless we
- explictly write code that references it. */
- static int check_panda_version = panda_version_VERSION1_VERSION2_VERSION3;
- # endif
- """
- def CreatePandaVersionFiles():
- version1=int(VERSION.split(".")[0])
- version2=int(VERSION.split(".")[1])
- version3=int(VERSION.split(".")[2])
- nversion=version1*1000000+version2*1000+version3
-
- pandaversion_h = PANDAVERSION_H.replace("VERSION1",str(version1))
- pandaversion_h = pandaversion_h.replace("VERSION2",str(version2))
- pandaversion_h = pandaversion_h.replace("VERSION3",str(version3))
- pandaversion_h = pandaversion_h.replace("NVERSION",str(nversion))
-
- checkpandaversion_cxx = CHECKPANDAVERSION_CXX.replace("VERSION1",str(version1))
- checkpandaversion_cxx = checkpandaversion_cxx.replace("VERSION2",str(version2))
- checkpandaversion_cxx = checkpandaversion_cxx.replace("VERSION3",str(version3))
- checkpandaversion_cxx = checkpandaversion_cxx.replace("NVERSION",str(nversion))
-
- checkpandaversion_h = CHECKPANDAVERSION_H.replace("VERSION1",str(version1))
- checkpandaversion_h = checkpandaversion_h.replace("VERSION2",str(version2))
- checkpandaversion_h = checkpandaversion_h.replace("VERSION3",str(version3))
- checkpandaversion_h = checkpandaversion_h.replace("NVERSION",str(nversion))
- ConditionalWriteFile('built/include/pandaVersion.h', pandaversion_h)
- ConditionalWriteFile('built/include/checkPandaVersion.cxx', checkpandaversion_cxx)
- ConditionalWriteFile('built/include/checkPandaVersion.h', checkpandaversion_h)
- if (OMIT.count("PYTHON")==0):
- ConditionalWriteFile("built/tmp/pythonversion", os.path.basename(PYTHONSDK))
- ConditionalWriteFile("built/tmp/null.cxx","")
- CreatePandaVersionFiles()
- ##########################################################################################
- #
- # Generate direct/__init__.py
- #
- ##########################################################################################
- DIRECTINIT="""
- import os,sys
- srcdir1 = os.path.join(__path__[0], 'src')
- srcdir2 = os.path.join(__path__[0], '..', '..', 'direct', 'src')
- if (os.path.isdir(srcdir1)): __path__[0] = srcdir1
- elif (os.path.isdir(srcdir2)): __path__[0] = srcdir2
- else: exit("Cannot find the 'direct' tree")
- """
- if (OMIT.count("PYTHON")==0):
- ConditionalWriteFile('built/direct/__init__.py', DIRECTINIT)
- ##########################################################################################
- #
- # Generate the PRC files into the ETC directory.
- #
- ##########################################################################################
- confautoprc=ReadFile("makepanda/confauto.in")
- if (os.path.isfile("makepanda/myconfig.in")):
- configprc=ReadFile("makepanda/myconfig.in")
- else:
- configprc=ReadFile("makepanda/config.in")
- if (sys.platform != "win32"):
- confautoprc = confautoprc.replace("aux-display pandadx9","")
- confautoprc = confautoprc.replace("aux-display pandadx8","")
- confautoprc = confautoprc.replace("aux-display pandadx7","")
- ConditionalWriteFile("built/etc/Confauto.prc", confautoprc)
- ConditionalWriteFile("built/etc/Config.prc", configprc)
- ##########################################################################################
- #
- # Copy the precompiled binaries and DLLs into the build.
- #
- ##########################################################################################
- for pkg in (PACKAGES + ["extras"]):
- if (OMIT.count(pkg)==0):
- if (COMPILER == "MSVC"):
- if (os.path.exists(THIRDPARTYLIBS+pkg.lower()+"/bin")):
- CopyAllFiles("built/bin/",THIRDPARTYLIBS+pkg.lower()+"/bin/")
- if (COMPILER == "LINUX"):
- if (os.path.exists(THIRDPARTYLIBS+pkg.lower()+"/lib")):
- CopyAllFiles("built/lib/",THIRDPARTYLIBS+pkg.lower()+"/lib/")
- if (sys.platform == "win32"):
- if (OMIT.count("PYTHON")==0):
- CopyFile('built/bin/python24.dll', 'thirdparty/win-python/python24.dll')
- CopyTree('built/python', 'thirdparty/win-python')
- CopyFile('built/python/ppython.exe', 'thirdparty/win-python/python.exe')
- CopyFile('built/python/ppythonw.exe', 'thirdparty/win-python/pythonw.exe')
- ConditionalWriteFile('built/python/panda.pth',"..\n../bin\n")
- ########################################################################
- ##
- ## Copy various stuff into the build.
- ##
- ########################################################################
- CopyFile("built/", "doc/LICENSE")
- CopyFile("built/", "doc/ReleaseNotes")
- CopyAllFiles("built/plugins/", "pandatool/src/scripts/", ".mel")
- CopyAllFiles("built/plugins/", "pandatool/src/scripts/", ".ms")
- if (OMIT.count("PYTHON")==0):
- CopyTree('built/Pmw', 'thirdparty/Pmw')
- CopyTree('built/SceneEditor', 'SceneEditor')
- ConditionalWriteFile('built/include/ctl3d.h', '/* dummy file to make MAX happy */')
- ########################################################################
- #
- # Copy header files to the built/include/parser-inc directory.
- #
- ########################################################################
- CopyAllFiles('built/include/parser-inc/','dtool/src/parser-inc/')
- CopyAllFiles('built/include/parser-inc/openssl/','dtool/src/parser-inc/')
- CopyFile('built/include/parser-inc/Cg/','dtool/src/parser-inc/cg.h')
- CopyFile('built/include/parser-inc/Cg/','dtool/src/parser-inc/cgGL.h')
- ########################################################################
- #
- # Transfer all header files to the built/include directory.
- #
- ########################################################################
- CopyAllHeaders('dtool/src/dtoolbase')
- CopyAllHeaders('dtool/src/dtoolutil', skip=["pandaVersion.h", "checkPandaVersion.h"])
- CopyAllHeaders('dtool/metalibs/dtool')
- CopyAllHeaders('dtool/src/cppparser', skip="ALL")
- CopyAllHeaders('dtool/src/prc')
- CopyAllHeaders('dtool/src/dconfig')
- CopyAllHeaders('dtool/src/interrogatedb')
- CopyAllHeaders('dtool/metalibs/dtoolconfig')
- CopyAllHeaders('dtool/src/pystub')
- CopyAllHeaders('dtool/src/interrogate')
- CopyAllHeaders('dtool/src/test_interrogate', skip="ALL")
- CopyAllHeaders('panda/src/putil')
- CopyAllHeaders('panda/src/pandabase')
- CopyAllHeaders('panda/src/express')
- CopyAllHeaders('panda/src/downloader')
- CopyAllHeaders('panda/metalibs/pandaexpress')
- CopyAllHeaders('panda/src/pipeline')
- CopyAllHeaders('panda/src/putil')
- CopyAllHeaders('dtool/src/prckeys')
- CopyAllHeaders('panda/src/audio')
- CopyAllHeaders('panda/src/event')
- CopyAllHeaders('panda/src/linmath')
- CopyAllHeaders('panda/src/mathutil')
- CopyAllHeaders('panda/src/gsgbase')
- CopyAllHeaders('panda/src/pnmimage')
- CopyAllHeaders('panda/src/net')
- CopyAllHeaders('panda/src/pstatclient')
- CopyAllHeaders('panda/src/gobj')
- CopyAllHeaders('panda/src/lerp')
- CopyAllHeaders('panda/src/pgraph')
- CopyAllHeaders('panda/src/cull')
- CopyAllHeaders('panda/src/effects')
- CopyAllHeaders('panda/src/chan')
- CopyAllHeaders('panda/src/char')
- CopyAllHeaders('panda/src/dgraph')
- CopyAllHeaders('panda/src/display')
- CopyAllHeaders('panda/src/device')
- CopyAllHeaders('panda/src/pnmtext')
- CopyAllHeaders('panda/src/text')
- CopyAllHeaders('panda/src/grutil')
- CopyAllHeaders('panda/src/tform')
- CopyAllHeaders('panda/src/collide')
- CopyAllHeaders('panda/src/parametrics')
- CopyAllHeaders('panda/src/pgui')
- CopyAllHeaders('panda/src/pnmimagetypes')
- CopyAllHeaders('panda/src/recorder')
- CopyAllHeaders('panda/src/vrpn')
- CopyAllHeaders('panda/src/helix')
- CopyAllHeaders('panda/src/glgsg')
- CopyAllHeaders('panda/src/wgldisplay')
- CopyAllHeaders('panda/src/physics')
- CopyAllHeaders('panda/src/particlesystem')
- CopyAllHeaders('panda/metalibs/panda')
- CopyAllHeaders('panda/src/audiotraits')
- CopyAllHeaders('panda/src/audiotraits')
- CopyAllHeaders('panda/src/distort')
- CopyAllHeaders('panda/src/downloadertools')
- CopyAllHeaders('panda/src/windisplay')
- # CopyAllHeaders('panda/src/dxgsg7')
- # CopyAllHeaders('panda/metalibs/pandadx7')
- CopyAllHeaders('panda/src/dxgsg8')
- CopyAllHeaders('panda/metalibs/pandadx8')
- CopyAllHeaders('panda/src/dxgsg9')
- CopyAllHeaders('panda/metalibs/pandadx9')
- CopyAllHeaders('panda/src/egg')
- CopyAllHeaders('panda/src/egg2pg')
- CopyAllHeaders('panda/src/framework')
- CopyAllHeaders('panda/metalibs/pandafx')
- CopyAllHeaders('panda/src/glstuff')
- CopyAllHeaders('panda/src/glgsg')
- CopyAllHeaders('panda/metalibs/pandaegg')
- if (sys.platform != "win32"):
- CopyAllHeaders('panda/src/glxdisplay')
- else:
- CopyAllHeaders('panda/src/wgldisplay')
- CopyAllHeaders('panda/metalibs/pandagl')
- CopyAllHeaders('panda/src/physics')
- CopyAllHeaders('panda/src/particlesystem')
- CopyAllHeaders('panda/metalibs/pandaphysics')
- CopyAllHeaders('panda/src/testbed')
- CopyAllHeaders('direct/src/directbase')
- CopyAllHeaders('direct/src/dcparser')
- CopyAllHeaders('direct/src/deadrec')
- CopyAllHeaders('direct/src/distributed')
- CopyAllHeaders('direct/src/interval')
- CopyAllHeaders('direct/src/showbase')
- CopyAllHeaders('direct/metalibs/direct')
- CopyAllHeaders('direct/src/dcparse')
- CopyAllHeaders('direct/src/heapq')
- CopyAllHeaders('pandatool/src/pandatoolbase')
- CopyAllHeaders('pandatool/src/converter')
- CopyAllHeaders('pandatool/src/progbase')
- CopyAllHeaders('pandatool/src/eggbase')
- CopyAllHeaders('pandatool/src/bam')
- CopyAllHeaders('pandatool/src/cvscopy')
- CopyAllHeaders('pandatool/src/dxf')
- CopyAllHeaders('pandatool/src/dxfegg')
- CopyAllHeaders('pandatool/src/dxfprogs')
- CopyAllHeaders('pandatool/src/palettizer')
- CopyAllHeaders('pandatool/src/egg-mkfont')
- CopyAllHeaders('pandatool/src/eggcharbase')
- CopyAllHeaders('pandatool/src/egg-optchar')
- CopyAllHeaders('pandatool/src/egg-palettize')
- CopyAllHeaders('pandatool/src/egg-qtess')
- CopyAllHeaders('pandatool/src/eggprogs')
- CopyAllHeaders('pandatool/src/flt')
- CopyAllHeaders('pandatool/src/fltegg')
- CopyAllHeaders('pandatool/src/fltprogs')
- CopyAllHeaders('pandatool/src/imagebase')
- CopyAllHeaders('pandatool/src/imageprogs')
- CopyAllHeaders('pandatool/src/lwo')
- CopyAllHeaders('pandatool/src/lwoegg')
- CopyAllHeaders('pandatool/src/lwoprogs')
- CopyAllHeaders('pandatool/src/maya')
- CopyAllHeaders('pandatool/src/mayaegg')
- CopyAllHeaders('pandatool/src/maxegg')
- CopyAllHeaders('pandatool/src/maxprogs')
- CopyAllHeaders('pandatool/src/vrml')
- CopyAllHeaders('pandatool/src/vrmlegg')
- CopyAllHeaders('pandatool/src/xfile')
- CopyAllHeaders('pandatool/src/xfileegg')
- CopyAllHeaders('pandatool/src/ptloader')
- CopyAllHeaders('pandatool/src/miscprogs')
- CopyAllHeaders('pandatool/src/pstatserver')
- CopyAllHeaders('pandatool/src/softprogs')
- CopyAllHeaders('pandatool/src/text-stats')
- CopyAllHeaders('pandatool/src/vrmlprogs')
- CopyAllHeaders('pandatool/src/win-stats')
- CopyAllHeaders('pandatool/src/xfileprogs')
- ########################################################################
- #
- # This section contains a list of all the files that need to be compiled.
- #
- ########################################################################
- print "Generating dependencies..."
- sys.stdout.flush()
- #
- # DIRECTORY: dtool/src/dtoolbase/
- #
- IPATH=['dtool/src/dtoolbase']
- OPTS=['BUILDING_DTOOL', 'NSPR', 'OPT3']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dtoolbase_composite1.cxx', obj='dtoolbase_composite1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dtoolbase_composite2.cxx', obj='dtoolbase_composite2.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='lookup3.c', obj='dtoolbase_lookup3.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='indent.cxx', obj='dtoolbase_indent.obj')
- if (sys.platform == "win32"):
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dlmalloc.c', obj='dtoolbase_allocator.obj')
- else:
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='null.cxx', obj='dtoolbase_allocator.obj')
- #
- # DIRECTORY: dtool/src/dtoolutil/
- #
- IPATH=['dtool/src/dtoolutil']
- OPTS=['BUILDING_DTOOL', 'NSPR', 'OPT3']
- CopyFile('built/include/','dtool/src/dtoolutil/vector_src.cxx')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='gnu_getopt.c', obj='dtoolutil_gnu_getopt.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='gnu_getopt1.c', obj='dtoolutil_gnu_getopt1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dtoolutil_composite.cxx', obj='dtoolutil_composite.obj')
- #
- # DIRECTORY: dtool/metalibs/dtool/
- #
- IPATH=['dtool/metalibs/dtool']
- OPTS=['BUILDING_DTOOL', 'NSPR', 'OPT3']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dtool.cxx', obj='dtool_dtool.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPT3'], dll='libdtool.dll', obj=[
- 'dtool_dtool.obj',
- 'dtoolutil_gnu_getopt.obj',
- 'dtoolutil_gnu_getopt1.obj',
- 'dtoolutil_composite.obj',
- 'dtoolbase_allocator.obj',
- 'dtoolbase_composite1.obj',
- 'dtoolbase_composite2.obj',
- 'dtoolbase_indent.obj',
- 'dtoolbase_lookup3.obj'
- ])
- #
- # DIRECTORY: dtool/src/cppparser/
- #
- IPATH=['dtool/src/cppparser']
- OPTS=['NSPR','OPT3']
- EnqueueBison(ipath=IPATH, opts=OPTS, pre='cppyy', src='cppBison.yxx', dsth='cppBison.h', obj='cppParser_cppBison.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='cppParser_composite.cxx', obj='cppParser_composite.obj')
- EnqueueLib(lib='libcppParser.ilb', obj=[
- 'cppParser_composite.obj',
- 'cppParser_cppBison.obj',
- ])
- #
- # DIRECTORY: dtool/src/prc/
- #
- IPATH=['dtool/src/prc']
- OPTS=['BUILDING_DTOOLCONFIG', 'OPENSSL', 'NSPR', 'OPT3']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='prc_composite.cxx', obj='prc_composite.obj')
- #
- # DIRECTORY: dtool/src/dconfig/
- #
- IPATH=['dtool/src/dconfig']
- OPTS=['BUILDING_DTOOLCONFIG', 'NSPR', 'OPT3']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dconfig_composite.cxx', obj='dconfig_composite.obj')
- #
- # DIRECTORY: dtool/src/interrogatedb/
- #
- IPATH=['dtool/src/interrogatedb']
- OPTS=['BUILDING_DTOOLCONFIG', 'NSPR', 'OPT3']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='interrogatedb_composite.cxx', obj='interrogatedb_composite.obj')
- #
- # DIRECTORY: dtool/metalibs/dtoolconfig/
- #
- IPATH=['dtool/metalibs/dtoolconfig']
- OPTS=['BUILDING_DTOOLCONFIG', 'NSPR', 'OPT3']
- SRCFILE="pydtool.cxx"
- if (OMIT.count("PYTHON")): SRCFILE="null.cxx"
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dtoolconfig.cxx', obj='dtoolconfig_dtoolconfig.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src=SRCFILE, obj='dtoolconfig_pydtool.obj', xdep=["built/tmp/dtool_have_python.dat"])
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPENSSL', 'OPT3'], dll='libdtoolconfig.dll', obj=[
- 'dtoolconfig_dtoolconfig.obj',
- 'dtoolconfig_pydtool.obj',
- 'interrogatedb_composite.obj',
- 'dconfig_composite.obj',
- 'prc_composite.obj',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: dtool/src/pystub/
- #
- IPATH=['dtool/src/pystub']
- OPTS=['BUILDING_DTOOLCONFIG', 'NSPR', 'OPT3']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pystub.cxx', obj='pystub_pystub.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPT3'], dll='libpystub.dll', obj=[
- 'pystub_pystub.obj',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: dtool/src/interrogate/
- #
- IPATH=['dtool/src/interrogate', 'dtool/src/cppparser', 'dtool/src/interrogatedb']
- OPTS=['NSPR', 'OPT3']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='interrogate_composite.cxx', obj='interrogate_composite.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPENSSL', 'OPT3'], dll='interrogate.exe', obj=[
- 'interrogate_composite.obj',
- 'libcppParser.ilb',
- 'libpystub.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='interrogate_module.cxx', obj='interrogate_module_interrogate_module.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPENSSL', 'OPT3'], dll='interrogate_module.exe', obj=[
- 'interrogate_module_interrogate_module.obj',
- 'libcppParser.ilb',
- 'libpystub.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='parse_file.cxx', obj='parse_file_parse_file.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPENSSL', 'OPT3'], dll='parse_file.exe', obj=[
- 'parse_file_parse_file.obj',
- 'libcppParser.ilb',
- 'libpystub.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: dtool/src/prckeys/
- #
- if (OMIT.count("OPENSSL")==0):
- IPATH=['dtool/src/prckeys']
- OPTS=['OPENSSL', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='makePrcKey.cxx', obj='make-prc-key_makePrcKey.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPENSSL'], dll='make-prc-key.exe', obj=[
- 'make-prc-key_makePrcKey.obj',
- 'libpystub.dll',
- 'libdtool.dll',
- 'libdtoolconfig.dll',
- ])
- #
- # DIRECTORY: dtool/src/test_interrogate/
- #
- IPATH=['dtool/src/test_interrogate']
- OPTS=['NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='test_interrogate.cxx', obj='test_interrogate_test_interrogate.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPENSSL'], dll='test_interrogate.exe', obj=[
- 'test_interrogate_test_interrogate.obj',
- 'libpystub.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/pandabase/
- #
- IPATH=['panda/src/pandabase']
- OPTS=['BUILDING_PANDAEXPRESS', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandabase.cxx', obj='pandabase_pandabase.obj')
- #
- # DIRECTORY: panda/src/express/
- #
- IPATH=['panda/src/express']
- OPTS=['BUILDING_PANDAEXPRESS', 'OPENSSL', 'ZLIB', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='express_composite1.cxx', obj='express_composite1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='express_composite2.cxx', obj='express_composite2.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libexpress.in', obj='libexpress_igate.obj',
- src='panda/src/express', module='pandaexpress', library='libexpress',
- skip=[], also=["express_composite1.cxx", "express_composite2.cxx"])
- #
- # DIRECTORY: panda/src/downloader/
- #
- IPATH=['panda/src/downloader']
- OPTS=['BUILDING_PANDAEXPRESS', 'OPENSSL', 'ZLIB', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='downloader_composite.cxx', obj='downloader_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdownloader.in', obj='libdownloader_igate.obj',
- src='panda/src/downloader', module='pandaexpress', library='libdownloader',
- skip=[], also=["downloader_composite.cxx"])
- #
- # DIRECTORY: panda/metalibs/pandaexpress/
- #
- IPATH=['panda/metalibs/pandaexpress']
- OPTS=['BUILDING_PANDAEXPRESS', 'ZLIB', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandaexpress.cxx', obj='pandaexpress_pandaexpress.obj')
- EnqueueImod(ipath=IPATH, opts=OPTS, obj='libpandaexpress_module.obj',
- module='pandaexpress', library='libpandaexpress',
- files=['libdownloader.in', 'libexpress.in'])
- EnqueueLink(opts=['ADVAPI', 'WINSOCK2', 'NSPR', 'OPENSSL', 'ZLIB'], dll='libpandaexpress.dll', obj=[
- 'pandaexpress_pandaexpress.obj',
- 'libpandaexpress_module.obj',
- 'downloader_composite.obj',
- 'libdownloader_igate.obj',
- 'express_composite1.obj',
- 'express_composite2.obj',
- 'libexpress_igate.obj',
- 'pandabase_pandabase.obj',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/pipeline/
- #
- IPATH=['panda/src/pipeline']
- OPTS=['BUILDING_PANDA', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pipeline_composite.cxx', obj='pipeline_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libpipeline.in', obj='libpipeline_igate.obj',
- src='panda/src/pipeline', module='panda', library='libpipeline',
- skip=[], also=["pipeline_composite.cxx"])
- #
- # DIRECTORY: panda/src/putil/
- #
- IPATH=['panda/src/putil']
- OPTS=['BUILDING_PANDA', 'NSPR', 'ZLIB']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='putil_composite1.cxx', obj='putil_composite1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='putil_composite2.cxx', obj='putil_composite2.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libputil.in', obj='libputil_igate.obj',
- src='panda/src/putil', module='panda', library='libputil',
- skip=["test_bam.h"], also=["putil_composite1.cxx", "putil_composite2.cxx"])
- #
- # DIRECTORY: panda/src/audio/
- #
- IPATH=['panda/src/audio']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/audio')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='audio_composite.cxx', obj='audio_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libaudio.in', obj='libaudio_igate.obj',
- src='panda/src/audio', module='panda', library='libaudio',
- skip="ALL", also=["audio.h"])
- #
- # DIRECTORY: panda/src/event/
- #
- IPATH=['panda/src/event']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/event')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='event_composite.cxx', obj='event_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libevent.in', obj='libevent_igate.obj',
- src='panda/src/event', module='panda', library='libevent',
- skip=[], also=["event_composite.cxx"])
- #
- # DIRECTORY: panda/src/linmath/
- #
- IPATH=['panda/src/linmath']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/linmath')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='linmath_composite.cxx', obj='linmath_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='liblinmath.in', obj='liblinmath_igate.obj',
- src='panda/src/linmath', module='panda', library='liblinmath',
- skip=['lmat_ops_src.h', 'cast_to_double.h', 'lmat_ops.h', 'cast_to_float.h'],
- also=["linmath_composite.cxx"])
- #
- # DIRECTORY: panda/src/mathutil/
- #
- IPATH=['panda/src/mathutil']
- OPTS=['BUILDING_PANDA', 'FFTW', 'NSPR']
- # CopyAllHeaders('panda/src/mathutil')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mathutil_composite.cxx', obj='mathutil_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libmathutil.in', obj='libmathutil_igate.obj',
- src='panda/src/mathutil', module='panda', library='libmathutil',
- skip=['mathHelpers.h'], also=["mathutil_composite.cxx"])
- #
- # DIRECTORY: panda/src/gsgbase/
- #
- IPATH=['panda/src/gsgbase']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/gsgbase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='gsgbase_composite.cxx', obj='gsgbase_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libgsgbase.in', obj='libgsgbase_igate.obj',
- src='panda/src/gsgbase', module='panda', library='libgsgbase',
- skip=[], also=["gsgbase_composite.cxx"])
- #
- # DIRECTORY: panda/src/pnmimage/
- #
- IPATH=['panda/src/pnmimage']
- OPTS=['BUILDING_PANDA', 'NSPR', 'ZLIB']
- # CopyAllHeaders('panda/src/pnmimage')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pnmimage_composite.cxx', obj='pnmimage_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libpnmimage.in', obj='libpnmimage_igate.obj',
- src='panda/src/pnmimage', module='panda', library='libpnmimage',
- skip=[], also=["pnmimage_composite.cxx"])
- #
- # DIRECTORY: panda/src/net/
- #
- if (OMIT.count("NSPR")==0):
- IPATH=['panda/src/net']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/net')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='net_composite.cxx', obj='net_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libnet.in', obj='libnet_igate.obj',
- src='panda/src/net', module='panda', library='libnet',
- skip=["datagram_ui.h"], also=["net_composite.cxx"])
- #
- # DIRECTORY: panda/src/pstatclient/
- #
- IPATH=['panda/src/pstatclient']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/pstatclient')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pstatclient_composite.cxx', obj='pstatclient_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libpstatclient.in', obj='libpstatclient_igate.obj',
- src='panda/src/pstatclient', module='panda', library='libpstatclient',
- skip=[], also=["pstatclient_composite.cxx"])
- #
- # DIRECTORY: panda/src/gobj/
- #
- IPATH=['panda/src/gobj']
- OPTS=['BUILDING_PANDA', 'NSPR', 'ZLIB']
- # CopyAllHeaders('panda/src/gobj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='gobj_composite1.cxx', obj='gobj_composite1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='gobj_composite2.cxx', obj='gobj_composite2.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libgobj.in', obj='libgobj_igate.obj',
- src='panda/src/gobj', module='panda', library='libgobj',
- skip=[], also=["gobj_composite1.cxx", "gobj_composite2.cxx"])
- #
- # DIRECTORY: panda/src/lerp/
- #
- IPATH=['panda/src/lerp']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/lerp')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='lerp_composite.cxx', obj='lerp_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='liblerp.in', obj='liblerp_igate.obj',
- src='panda/src/lerp', module='panda', library='liblerp',
- skip=["lerp_headers.h","lerpchans.h"], also=["lerp_composite.cxx"])
- #
- # DIRECTORY: panda/src/pgraph/
- #
- IPATH=['panda/src/pgraph']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/pgraph')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='nodePath.cxx', obj='pgraph_nodePath.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pgraph_composite1.cxx', obj='pgraph_composite1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pgraph_composite2.cxx', obj='pgraph_composite2.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pgraph_composite3.cxx', obj='pgraph_composite3.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pgraph_composite4.cxx', obj='pgraph_composite4.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libpgraph.in', obj='libpgraph_igate.obj',
- src='panda/src/pgraph', module='panda', library='libpgraph',
- skip=["antialiasAttrib.h"],
- also=["nodePath.cxx",
- "pgraph_composite1.cxx", "pgraph_composite2.cxx",
- "pgraph_composite3.cxx", "pgraph_composite4.cxx"])
- #
- # DIRECTORY: panda/src/cull/
- #
- IPATH=['panda/src/cull']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/cull')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='cull_composite.cxx', obj='cull_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libcull.in', obj='libcull_igate.obj',
- src='panda/src/cull', module='panda', library='libcull',
- skip=[], also=["cull_composite.cxx"])
- #
- # DIRECTORY: panda/src/effects/
- #
- IPATH=['panda/src/effects']
- OPTS=['BUILDING_PANDAFX', 'NSPR', 'NVIDIACG']
- # CopyAllHeaders('panda/src/effects')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='effects_composite.cxx', obj='effects_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libeffects.in', obj='libeffects_igate.obj',
- src='panda/src/effects', module='pandafx', library='libeffects',
- skip=["cgShader.h", "cgShaderAttrib.h", "cgShaderContext.h"],
- also=["effects_composite.cxx"])
- #
- # DIRECTORY: panda/src/chan/
- #
- IPATH=['panda/src/chan']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/chan')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='chan_composite.cxx', obj='chan_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libchan.in', obj='libchan_igate.obj',
- src='panda/src/chan', module='panda', library='libchan',
- skip=['movingPart.h', 'chan_headers.h', 'animChannelFixed.h'],
- also=["chan_composite.cxx"])
- #
- # DIRECTORY: panda/src/char/
- #
- IPATH=['panda/src/char']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/char')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='char_composite.cxx', obj='char_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libchar.in', obj='libchar_igate.obj',
- src='panda/src/char', module='panda', library='libchar',
- skip=[], also=["char_composite.cxx"])
- #
- # DIRECTORY: panda/src/dgraph/
- #
- IPATH=['panda/src/dgraph']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/dgraph')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dgraph_composite.cxx', obj='dgraph_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdgraph.in', obj='libdgraph_igate.obj',
- src='panda/src/dgraph', module='panda', library='libdgraph',
- skip=[], also=["dgraph_composite.cxx"])
- #
- # DIRECTORY: panda/src/display/
- #
- IPATH=['panda/src/display']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/display')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='display_composite.cxx', obj='display_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdisplay.in', obj='libdisplay_igate.obj',
- src='panda/src/display', module='panda', library='libdisplay',
- skip=['renderBuffer.h'], also=["display_composite.cxx"])
- #
- # DIRECTORY: panda/src/device/
- #
- IPATH=['panda/src/device']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/device')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='device_composite.cxx', obj='device_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdevice.in', obj='libdevice_igate.obj',
- src='panda/src/device', module='panda', library='libdevice',
- skip=[], also=["device_composite.cxx"])
- #
- # DIRECTORY: panda/src/pnmtext/
- #
- if (OMIT.count("FREETYPE")==0):
- IPATH=['panda/src/pnmtext']
- OPTS=['BUILDING_PANDA', 'NSPR', 'FREETYPE']
- # CopyAllHeaders('panda/src/pnmtext')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pnmtext_composite.cxx', obj='pnmtext_composite.obj')
- #
- # DIRECTORY: panda/src/text/
- #
- IPATH=['panda/src/text']
- OPTS=['BUILDING_PANDA', 'ZLIB', 'NSPR', 'FREETYPE']
- # CopyAllHeaders('panda/src/text')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='text_composite.cxx', obj='text_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libtext.in', obj='libtext_igate.obj',
- src='panda/src/text', module='panda', library='libtext',
- skip=[], also=["text_composite.cxx"])
- #
- # DIRECTORY: panda/src/grutil/
- #
- IPATH=['panda/src/grutil']
- OPTS=['BUILDING_PANDA', 'NSPR', 'FFMPEG']
- # CopyAllHeaders('panda/src/grutil')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='multitexReducer.cxx', obj='grutil_multitexReducer.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='grutil_composite.cxx', obj='grutil_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libgrutil.in', obj='libgrutil_igate.obj',
- src='panda/src/grutil', module='panda', library='libgrutil',
- skip=[], also=["multitexReducer.cxx","grutil_composite.cxx"])
- #
- # DIRECTORY: panda/src/tform/
- #
- IPATH=['panda/src/tform']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/tform')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='tform_composite.cxx', obj='tform_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libtform.in', obj='libtform_igate.obj',
- src='panda/src/tform', module='panda', library='libtform',
- skip=[], also=["tform_composite.cxx"])
- #
- # DIRECTORY: panda/src/collide/
- #
- IPATH=['panda/src/collide']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/collide')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='collide_composite.cxx', obj='collide_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libcollide.in', obj='libcollide_igate.obj',
- src='panda/src/collide', module='panda', library='libcollide',
- skip=["collide_headers.h"], also=["collide_composite.cxx"])
- #
- # DIRECTORY: panda/src/parametrics/
- #
- IPATH=['panda/src/parametrics']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/parametrics')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='parametrics_composite.cxx', obj='parametrics_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libparametrics.in', obj='libparametrics_igate.obj',
- src='panda/src/parametrics', module='panda', library='libparametrics',
- skip=['nurbsPPCurve.h'], also=["parametrics_composite.cxx"])
- #
- # DIRECTORY: panda/src/pgui/
- #
- IPATH=['panda/src/pgui']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/pgui')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pgui_composite.cxx', obj='pgui_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libpgui.in', obj='libpgui_igate.obj',
- src='panda/src/pgui', module='panda', library='libpgui',
- skip=[], also=["pgui_composite.cxx"])
- #
- # DIRECTORY: panda/src/pnmimagetypes/
- #
- IPATH=['panda/src/pnmimagetypes', 'panda/src/pnmimage']
- OPTS=['BUILDING_PANDA', 'PNG', 'ZLIB', 'JPEG', 'ZLIB', 'NSPR', 'JPEG', 'TIFF']
- # CopyAllHeaders('panda/src/pnmimagetypes')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pnmFileTypePNG.cxx', obj='pnmimagetypes_pnmFileTypePNG.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pnmFileTypeTIFF.cxx', obj='pnmimagetypes_pnmFileTypeTIFF.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pnmimagetypes_composite.cxx', obj='pnmimagetypes_composite.obj')
- #
- # DIRECTORY: panda/src/recorder/
- #
- IPATH=['panda/src/recorder']
- OPTS=['BUILDING_PANDA', 'NSPR']
- # CopyAllHeaders('panda/src/recorder')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='recorder_composite.cxx', obj='recorder_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='librecorder.in', obj='librecorder_igate.obj',
- src='panda/src/recorder', module='panda', library='librecorder',
- skip=[], also=["recorder_composite.cxx"])
- #
- # DIRECTORY: panda/src/vrpn/
- #
- if (OMIT.count("VRPN")==0):
- IPATH=['panda/src/vrpn']
- OPTS=['BUILDING_PANDA', 'NSPR', 'VRPN']
- # CopyAllHeaders('panda/src/vrpn')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vrpn_composite.cxx', obj='pvrpn_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libpvrpn.in', obj='libpvrpn_igate.obj',
- src='panda/src/vrpn', module='panda', library='libpvrpn',
- skip=[], also=["vrpn_composite.cxx"])
- #
- # DIRECTORY: panda/metalibs/panda/
- #
- # CopyAllHeaders('panda/src/glgsg')
- # CopyAllHeaders('panda/src/wgldisplay')
- # CopyAllHeaders('panda/src/physics')
- # CopyAllHeaders('panda/src/particlesystem')
- IPATH=['panda/metalibs/panda']
- OPTS=['BUILDING_PANDA', 'ZLIB', 'VRPN', 'JPEG', 'PNG', 'TIFF', 'NSPR', 'FREETYPE', 'FFTW',
- 'ADVAPI', 'WINSOCK2', 'WINUSER', 'WINMM', 'FFMPEG']
- INFILES=['librecorder.in', 'libpgraph.in', 'libcull.in', 'libgrutil.in', 'libchan.in', 'libpstatclient.in',
- 'libchar.in', 'libcollide.in', 'libdevice.in', 'libdgraph.in', 'libdisplay.in', 'libpipeline.in', 'libevent.in',
- 'libgobj.in', 'libgsgbase.in', 'liblinmath.in', 'libmathutil.in', 'libparametrics.in',
- 'libpnmimage.in', 'libtext.in', 'libtform.in', 'liblerp.in', 'libputil.in', 'libaudio.in',
- 'libpgui.in']
- OBJFILES=['panda_panda.obj', 'libpanda_module.obj',
- 'recorder_composite.obj', 'librecorder_igate.obj',
- 'pgraph_nodePath.obj',
- 'pgraph_composite1.obj', 'pgraph_composite2.obj', 'pgraph_composite3.obj', 'pgraph_composite4.obj', 'libpgraph_igate.obj',
- 'cull_composite.obj',
- 'grutil_multitexReducer.obj', 'grutil_composite.obj', 'libgrutil_igate.obj',
- 'chan_composite.obj', 'libchan_igate.obj',
- 'pstatclient_composite.obj', 'libpstatclient_igate.obj',
- 'char_composite.obj', 'libchar_igate.obj',
- 'collide_composite.obj', 'libcollide_igate.obj',
- 'device_composite.obj', 'libdevice_igate.obj',
- 'dgraph_composite.obj', 'libdgraph_igate.obj',
- 'display_composite.obj', 'libdisplay_igate.obj',
- 'pipeline_composite.obj', 'libpipeline_igate.obj',
- 'event_composite.obj', 'libevent_igate.obj',
- 'gobj_composite1.obj', 'gobj_composite2.obj', 'libgobj_igate.obj',
- 'gsgbase_composite.obj', 'libgsgbase_igate.obj',
- 'linmath_composite.obj', 'liblinmath_igate.obj',
- 'mathutil_composite.obj', 'libmathutil_igate.obj',
- 'parametrics_composite.obj', 'libparametrics_igate.obj',
- 'pnmimagetypes_composite.obj', 'pnmimagetypes_pnmFileTypePNG.obj', 'pnmimagetypes_pnmFileTypeTIFF.obj',
- 'pnmimage_composite.obj', 'libpnmimage_igate.obj',
- 'text_composite.obj', 'libtext_igate.obj',
- 'tform_composite.obj', 'libtform_igate.obj',
- 'lerp_composite.obj', 'liblerp_igate.obj',
- 'putil_composite1.obj', 'putil_composite2.obj', 'libputil_igate.obj',
- 'audio_composite.obj', 'libaudio_igate.obj',
- 'pgui_composite.obj', 'libpgui_igate.obj',
- 'pandabase_pandabase.obj', 'libpandaexpress.dll', 'libdtoolconfig.dll', 'libdtool.dll']
- if OMIT.count("VRPN")==0:
- OBJFILES.append("pvrpn_composite.obj")
- OBJFILES.append("libpvrpn_igate.obj")
- INFILES.append("libpvrpn.in")
- if OMIT.count("NSPR")==0:
- OBJFILES.append("net_composite.obj")
- OBJFILES.append("libnet_igate.obj")
- INFILES.append("libnet.in")
- if OMIT.count("FREETYPE")==0:
- OBJFILES.append("pnmtext_composite.obj")
- EnqueueImod(ipath=IPATH, opts=OPTS, obj='libpanda_module.obj',
- module='panda', library='libpanda', files=INFILES)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='panda.cxx', obj='panda_panda.obj')
- EnqueueLink(opts=OPTS, dll='libpanda.dll', obj=OBJFILES, xdep=[
- 'built/tmp/dtool_have_helix.dat',
- 'built/tmp/dtool_have_vrpn.dat',
- 'built/tmp/dtool_have_nspr.dat',
- 'built/tmp/dtool_have_freetype.dat',
- ])
- #
- # DIRECTORY: panda/src/audiotraits/
- #
- if OMIT.count("FMODEX") == 0:
- IPATH=['panda/src/audiotraits']
- OPTS=['BUILDING_FMOD_AUDIO', 'NSPR', 'FMODEX']
- # CopyAllHeaders('panda/src/audiotraits')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fmod_audio_composite.cxx', obj='fmod_audio_fmod_audio_composite.obj')
- EnqueueLink(opts=['ADVAPI', 'WINUSER', 'WINMM', 'FMODEX', 'NSPR'], dll='libfmod_audio.dll', obj=[
- 'fmod_audio_fmod_audio_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- if OMIT.count("MILES") == 0:
- IPATH=['panda/src/audiotraits']
- OPTS=['BUILDING_MILES_AUDIO', 'NSPR', 'MILES']
- # CopyAllHeaders('panda/src/audiotraits')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='miles_audio_composite.cxx', obj='miles_audio_miles_audio_composite.obj')
- EnqueueLink(opts=['ADVAPI', 'WINUSER', 'WINMM', 'MILES', 'NSPR'], dll='libmiles_audio.dll', obj=[
- 'miles_audio_miles_audio_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/distort/
- #
- IPATH=['panda/src/distort']
- OPTS=['BUILDING_PANDAFX', 'NSPR']
- # CopyAllHeaders('panda/src/distort')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='distort_composite.cxx', obj='distort_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdistort.in', obj='libdistort_igate.obj',
- src='panda/src/distort', module='pandafx', library='libdistort',
- skip=[], also=["distort_composite.cxx"])
- #
- # DIRECTORY: panda/src/downloadertools/
- #
- # There's something funny about this OMIT.count('OPENSSL')... check it out.
- #
- if OMIT.count("OPENSSL")==0:
- IPATH=['panda/src/downloadertools']
- OPTS=['OPENSSL', 'ZLIB', 'NSPR']
- LIBS=['libpandaexpress.dll', 'libpanda.dll', 'libdtoolconfig.dll', 'libdtool.dll', 'libpystub.dll']
- # CopyAllHeaders('panda/src/downloadertools')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='apply_patch.cxx', obj='apply_patch_apply_patch.obj')
- EnqueueLink(dll='apply_patch.exe', opts=['ADVAPI', 'NSPR'], obj=['apply_patch_apply_patch.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='build_patch.cxx', obj='build_patch_build_patch.obj')
- EnqueueLink(dll='build_patch.exe', opts=['ADVAPI', 'NSPR'], obj=['build_patch_build_patch.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='check_adler.cxx', obj='check_adler_check_adler.obj')
- EnqueueLink(dll='check_adler.exe', opts=['ADVAPI', 'NSPR', 'ZLIB'], obj=['check_adler_check_adler.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='check_crc.cxx', obj='check_crc_check_crc.obj')
- EnqueueLink(dll='check_crc.exe', opts=['ADVAPI', 'NSPR', 'ZLIB'], obj=['check_crc_check_crc.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='check_md5.cxx', obj='check_md5_check_md5.obj')
- EnqueueLink(dll='check_md5.exe', opts=['ADVAPI', 'NSPR', 'OPENSSL'], obj=['check_md5_check_md5.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='multify.cxx', obj='multify_multify.obj')
- EnqueueLink(dll='multify.exe', opts=['ADVAPI', 'NSPR'], obj=['multify_multify.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pzip.cxx', obj='pzip_pzip.obj')
- EnqueueLink(dll='pzip.exe', opts=['ADVAPI', 'NSPR', 'ZLIB'], obj=['pzip_pzip.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='punzip.cxx', obj='punzip_punzip.obj')
- EnqueueLink(dll='punzip.exe', opts=['ADVAPI', 'NSPR', 'ZLIB'], obj=['punzip_punzip.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pdecrypt.cxx', obj='pdecrypt_pdecrypt.obj')
- EnqueueLink(dll='pdecrypt.exe', opts=['ADVAPI', 'NSPR', 'OPENSSL'], obj=['pdecrypt_pdecrypt.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pencrypt.cxx', obj='pencrypt_pencrypt.obj')
- EnqueueLink(dll='pencrypt.exe', opts=['ADVAPI', 'NSPR', 'OPENSSL'], obj=['pencrypt_pencrypt.obj']+LIBS)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='show_ddb.cxx', obj='show_ddb_show_ddb.obj')
- EnqueueLink(dll='show_ddb.exe', opts=['ADVAPI', 'NSPR'], obj=['show_ddb_show_ddb.obj']+LIBS)
- #
- # DIRECTORY: panda/src/windisplay/
- #
- if (sys.platform == "win32"):
- IPATH=['panda/src/windisplay']
- OPTS=['BUILDING_PANDAWIN', 'NSPR']
- # CopyAllHeaders('panda/src/windisplay')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='windisplay_composite.cxx', obj='windisplay_composite.obj')
- EnqueueLink(opts=['WINIMM', 'WINGDI', 'WINKERNEL', 'WINOLDNAMES', 'WINUSER', 'WINMM', 'NSPR'],
- dll='libwindisplay.dll', obj=[
- 'windisplay_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/metalibs/pandadx7/
- #
- #
- # if OMIT.count("DX7")==0:
- # IPATH=['panda/src/dxgsg7']
- # OPTS=['BUILDING_PANDADX', 'DXSDK', 'NSPR']
- # # CopyAllHeaders('panda/src/dxgsg7')
- # EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxGraphicsStateGuardian7.cxx', obj='dxgsg7_dxGraphicsStateGuardian7.obj')
- # EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxgsg7_composite.cxx', obj='dxgsg7_composite.obj')
- #
- # IPATH=['panda/metalibs/pandadx7']
- # OPTS=['BUILDING_PANDADX', 'DXSDK', 'NSPR']
- # # CopyAllHeaders('panda/metalibs/pandadx7')
- # EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandadx7.cxx', obj='pandadx7_pandadx7.obj')
- # EnqueueLink(dll='libpandadx7.dll', opts=['ADVAPI', 'WINGDI', 'WINKERNEL', 'WINUSER', 'WINMM', 'DXDRAW', 'DXGUID', 'D3D8', 'NSPR'], obj=[
- # 'pandadx7_pandadx7.obj',
- # 'dxgsg7_dxGraphicsStateGuardian7.obj',
- # 'dxgsg7_composite.obj',
- # 'libpanda.dll',
- # 'libpandaexpress.dll',
- # 'libwindisplay.dll',
- # 'libdtoolconfig.dll',
- # 'libdtool.dll',
- # ])
- #
- #
- # DIRECTORY: panda/metalibs/pandadx8/
- #
- if OMIT.count("DX8")==0:
- IPATH=['panda/src/dxgsg8', 'panda/metalibs/pandadx8']
- OPTS=['BUILDING_PANDADX', 'DX8', 'NSPR']
- # CopyAllHeaders('panda/src/dxgsg8')
- # CopyAllHeaders('panda/metalibs/pandadx8')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxGraphicsStateGuardian8.cxx', obj='dxgsg8_dxGraphicsStateGuardian8.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxgsg8_composite.cxx', obj='dxgsg8_composite.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandadx8.cxx', obj='pandadx8_pandadx8.obj')
- EnqueueLink(dll='libpandadx8.dll',
- opts=['ADVAPI', 'WINGDI', 'WINKERNEL', 'WINUSER', 'WINMM', 'DX8', 'NSPR'], obj=[
- 'pandadx8_pandadx8.obj',
- 'dxgsg8_dxGraphicsStateGuardian8.obj',
- 'dxgsg8_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libwindisplay.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/metalibs/pandadx9/
- #
- if OMIT.count("DX9")==0:
- IPATH=['panda/src/dxgsg9']
- OPTS=['BUILDING_PANDADX', 'DX9', 'NSPR', 'NVIDIACG', 'CGDX9']
- # CopyAllHeaders('panda/src/dxgsg9')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxGraphicsStateGuardian9.cxx', obj='dxgsg9_dxGraphicsStateGuardian9.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxgsg9_composite.cxx', obj='dxgsg9_composite.obj')
- IPATH=['panda/metalibs/pandadx9']
- # CopyAllHeaders('panda/metalibs/pandadx9')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandadx9.cxx', obj='pandadx9_pandadx9.obj')
- EnqueueLink(dll='libpandadx9.dll',
- opts=['ADVAPI', 'WINGDI', 'WINKERNEL', 'WINUSER', 'WINMM', 'DX9', 'NSPR', 'NVIDIACG', 'CGDX9'], obj=[
- 'pandadx9_pandadx9.obj',
- 'dxgsg9_dxGraphicsStateGuardian9.obj',
- 'dxgsg9_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libwindisplay.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/egg/
- #
- IPATH=['panda/src/egg']
- OPTS=['BUILDING_PANDAEGG', 'NSPR', 'ZLIB']
- # CopyAllHeaders('panda/src/egg')
- EnqueueBison(ipath=IPATH, opts=OPTS, pre='eggyy', src='parser.yxx', dsth='parser.h', obj='egg_parser.obj')
- EnqueueFlex(ipath=IPATH, opts=OPTS, pre='eggyy', src='lexer.lxx', obj='egg_lexer.obj', dashi=1)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='egg_composite1.cxx', obj='egg_composite1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='egg_composite2.cxx', obj='egg_composite2.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libegg.in', obj='libegg_igate.obj',
- src='panda/src/egg', module='pandaegg', library='libegg',
- skip=["parser.h"], also=["egg_composite1.cxx","egg_composite2.cxx"])
- #
- # DIRECTORY: panda/src/egg2pg/
- #
- IPATH=['panda/src/egg2pg']
- OPTS=['BUILDING_PANDAEGG', 'NSPR']
- # CopyAllHeaders('panda/src/egg2pg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='egg2pg_composite.cxx', obj='egg2pg_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libegg2pg.in', obj='libegg2pg_igate.obj',
- src='panda/src/egg2pg', module='pandaegg', library='libegg2pg',
- skip="ALL", also=['load_egg_file.h'])
- #
- # DIRECTORY: panda/src/framework/
- #
- IPATH=['panda/src/framework']
- OPTS=['BUILDING_FRAMEWORK', 'NSPR']
- # CopyAllHeaders('panda/src/framework')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='framework_composite.cxx', obj='framework_composite.obj')
- EnqueueLink(dll='libframework.dll', opts=['ADVAPI', 'NSPR'], obj=[
- 'framework_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/metalibs/pandafx/
- #
- IPATH=['panda/metalibs/pandafx', 'panda/src/distort']
- OPTS=['BUILDING_PANDAFX', 'NSPR', 'NVIDIACG']
- # CopyAllHeaders('panda/metalibs/pandafx')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandafx.cxx', obj='pandafx_pandafx.obj')
- EnqueueImod(ipath=IPATH, opts=OPTS, obj='libpandafx_module.obj',
- module='pandafx', library='libpandafx',
- files=['libdistort.in', 'libeffects.in'])
- EnqueueLink(dll='libpandafx.dll', opts=['ADVAPI', 'NSPR', 'NVIDIACG'], obj=[
- 'pandafx_pandafx.obj',
- 'libpandafx_module.obj',
- 'distort_composite.obj',
- 'libdistort_igate.obj',
- 'effects_composite.obj',
- 'libeffects_igate.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/glstuff/
- #
- IPATH=['panda/src/glstuff']
- OPTS=['NSPR', 'NVIDIACG', 'CGGL']
- # CopyAllHeaders('panda/src/glstuff')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='glpure.cxx', obj='glstuff_glpure.obj')
- EnqueueLink(dll='libglstuff.dll', opts=['ADVAPI', 'GLUT', 'NSPR', 'NVIDIACG', 'CGGL'], obj=[
- 'glstuff_glpure.obj',
- 'libpanda.dll',
- 'libpandafx.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/glgsg/
- #
- IPATH=['panda/src/glgsg', 'panda/src/glstuff', 'panda/src/gobj']
- OPTS=['BUILDING_PANDAGL', 'NSPR', 'NVIDIACG']
- # CopyAllHeaders('panda/src/glgsg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='config_glgsg.cxx', obj='glgsg_config_glgsg.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='glgsg.cxx', obj='glgsg_glgsg.obj')
- #
- # DIRECTORY: panda/metalibs/pandaegg/
- #
- IPATH=['panda/metalibs/pandaegg', 'panda/src/egg']
- OPTS=['BUILDING_PANDAEGG', 'NSPR']
- # CopyAllHeaders('panda/metalibs/pandaegg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandaegg.cxx', obj='pandaegg_pandaegg.obj')
- EnqueueImod(ipath=IPATH, opts=OPTS, obj='libpandaegg_module.obj',
- module='pandaegg', library='libpandaegg',
- files=['libegg2pg.in', 'libegg.in'])
- EnqueueLink(dll='libpandaegg.dll', opts=['ADVAPI', 'NSPR'], obj=[
- 'pandaegg_pandaegg.obj',
- 'libpandaegg_module.obj',
- 'egg2pg_composite.obj',
- 'libegg2pg_igate.obj',
- 'egg_composite1.obj',
- 'egg_composite2.obj',
- 'egg_parser.obj',
- 'egg_lexer.obj',
- 'libegg_igate.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/mesadisplay/
- #
- if (sys.platform != "win32"):
- IPATH=['panda/src/mesadisplay', 'panda/src/glstuff']
- OPTS=['BUILDING_PANDAGLUT', 'NSPR', 'GLUT']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mesadisplay_composite.cxx', obj='mesadisplay_composite.obj')
- IPATH=['panda/metalibs/pandagl']
- EnqueueLink(opts=['GLUT', 'NSPR'], dll='libpandamesa.dll', obj=[
- 'mesadisplay_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libglstuff.dll',
- 'libpandafx.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/glxdisplay/
- #
- if (sys.platform != "win32"):
- IPATH=['panda/src/glxdisplay']
- OPTS=['BUILDING_PANDAGLUT', 'NSPR', 'GLUT', 'NVIDIACG', 'CGGL']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='glxdisplay_composite.cxx', obj='glxdisplay_composite.obj')
- IPATH=['panda/metalibs/pandagl']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandagl.cxx', obj='pandagl_pandagl.obj')
- EnqueueLink(opts=['GLUT', 'NVIDIACG', 'CGGL', 'NSPR'], dll='libpandagl.dll', obj=[
- 'pandagl_pandagl.obj',
- 'glgsg_config_glgsg.obj',
- 'glgsg_glgsg.obj',
- 'glxdisplay_composite.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libglstuff.dll',
- 'libpandafx.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/wgldisplay/
- #
- if (sys.platform == "win32"):
- IPATH=['panda/src/wgldisplay', 'panda/src/glstuff']
- OPTS=['BUILDING_PANDAGL', 'NSPR', 'NVIDIACG', 'CGGL']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='wgldisplay_composite.cxx', obj='wgldisplay_composite.obj')
- IPATH=['panda/metalibs/pandagl']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandagl.cxx', obj='pandagl_pandagl.obj')
- EnqueueLink(opts=['WINGDI', 'GLUT', 'WINKERNEL', 'WINOLDNAMES', 'WINUSER', 'WINMM', 'NSPR', 'NVIDIACG', 'CGGL'],
- dll='libpandagl.dll', obj=[
- 'pandagl_pandagl.obj',
- 'glgsg_config_glgsg.obj',
- 'glgsg_glgsg.obj',
- 'wgldisplay_composite.obj',
- 'libwindisplay.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libglstuff.dll',
- 'libpandafx.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/physics/
- #
- IPATH=['panda/src/physics']
- OPTS=['BUILDING_PANDAPHYSICS', 'NSPR']
- # CopyAllHeaders('panda/src/physics')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='physics_composite.cxx', obj='physics_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libphysics.in', obj='libphysics_igate.obj',
- src='panda/src/physics', module='pandaphysics', library='libphysics',
- skip=["forces.h"], also=["physics_composite.cxx"])
- #
- # DIRECTORY: panda/src/particlesystem/
- #
- IPATH=['panda/src/particlesystem']
- OPTS=['BUILDING_PANDAPHYSICS', 'NSPR']
- # CopyAllHeaders('panda/src/particlesystem')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='particlesystem_composite.cxx', obj='particlesystem_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libparticlesystem.in', obj='libparticlesystem_igate.obj',
- src='panda/src/particlesystem', module='pandaphysics', library='libparticlesystem',
- skip=['orientedParticle.h', 'orientedParticleFactory.h', 'particlefactories.h', 'emitters.h', 'particles.h'],
- also=["particlesystem_composite.cxx"])
- #
- # DIRECTORY: panda/metalibs/pandaphysics/
- #
- IPATH=['panda/metalibs/pandaphysics']
- # CopyAllHeaders('panda/metalibs/pandaphysics')
- OPTS=['BUILDING_PANDAPHYSICS', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandaphysics.cxx', obj='pandaphysics_pandaphysics.obj')
- EnqueueImod(ipath=IPATH, opts=OPTS, obj='libpandaphysics_module.obj',
- module='pandaphysics', library='libpandaphysics',
- files=['libphysics.in', 'libparticlesystem.in'])
- EnqueueLink(dll='libpandaphysics.dll', opts=['ADVAPI', 'NSPR'], obj=[
- 'pandaphysics_pandaphysics.obj',
- 'libpandaphysics_module.obj',
- 'physics_composite.obj',
- 'libphysics_igate.obj',
- 'particlesystem_composite.obj',
- 'libparticlesystem_igate.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: panda/src/testbed/
- #
- IPATH=['panda/src/testbed']
- OPTS=['NSPR']
- # CopyAllHeaders('panda/src/testbed')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pview.cxx', obj='pview_pview.obj')
- EnqueueLink(dll='pview.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'pview_pview.obj',
- 'libframework.dll',
- 'libpanda.dll',
- 'libpandafx.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: direct/src/directbase/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/directbase']
- OPTS=['BUILDING_DIRECT', 'NSPR']
- # CopyAllHeaders('direct/src/directbase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='directbase.cxx', obj='directbase_directbase.obj')
- if (sys.platform != "win32"):
- EnqueueCxx(ipath=IPATH, opts=['BUILDING_PPYTHON'], src='ppython.cxx', obj='ppython.obj')
- EnqueueLink(opts=['WINUSER'], dll='ppython.exe', obj=['ppython.obj'])
- EnqueueCxx(ipath=IPATH, opts=['BUILDING_GENPYCODE'], src='ppython.cxx', obj='genpycode.obj')
- EnqueueLink(opts=['WINUSER'], dll='genpycode.exe', obj=['genpycode.obj'])
- EnqueueCxx(ipath=IPATH, opts=['BUILDING_PACKPANDA'], src='ppython.cxx', obj='packpanda.obj')
- EnqueueLink(opts=['WINUSER'], dll='packpanda.exe', obj=['packpanda.obj'])
- #
- # DIRECTORY: direct/src/dcparser/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/dcparser']
- OPTS=['WITHINPANDA', 'BUILDING_DIRECT', 'NSPR']
- # CopyAllHeaders('direct/src/dcparser')
- EnqueueBison(ipath=IPATH, opts=OPTS, pre='dcyy', src='dcParser.yxx', dsth='dcParser.h', obj='dcparser_dcParser.obj')
- EnqueueFlex(ipath=IPATH, opts=OPTS, pre='dcyy', src='dcLexer.lxx', obj='dcparser_dcLexer.obj', dashi=0)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dcparser_composite.cxx', obj='dcparser_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdcparser.in', obj='libdcparser_igate.obj',
- src='direct/src/dcparser', module='direct', library='libdcparser',
- skip=['dcmsgtypes.h'],
- also=["dcparser_composite.cxx"])
- #
- # DIRECTORY: direct/src/deadrec/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/deadrec']
- OPTS=['BUILDING_DIRECT', 'NSPR']
- # CopyAllHeaders('direct/src/deadrec')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='deadrec_composite.cxx', obj='deadrec_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdeadrec.in', obj='libdeadrec_igate.obj',
- src='direct/src/deadrec', module='direct', library='libdeadrec',
- skip=[], also=["deadrec_composite.cxx"])
- #
- # DIRECTORY: direct/src/distributed/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/distributed', 'direct/src/dcparser']
- OPTS=['WITHINPANDA', 'BUILDING_DIRECT', 'OPENSSL', 'NSPR']
- # CopyAllHeaders('direct/src/distributed')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='config_distributed.cxx', obj='distributed_config_distributed.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='cConnectionRepository.cxx', obj='distributed_cConnectionRepository.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='cDistributedSmoothNodeBase.cxx', obj='distributed_cDistributedSmoothNodeBase.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libdistributed.in', obj='libdistributed_igate.obj',
- src='direct/src/distributed', module='direct', library='libdistributed',
- skip=[], also=['config_distributed.cxx', 'cConnectionRepository.cxx', 'cDistributedSmoothNodeBase.cxx'])
- #
- # DIRECTORY: direct/src/interval/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/interval']
- OPTS=['BUILDING_DIRECT', 'NSPR']
- # CopyAllHeaders('direct/src/interval')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='interval_composite.cxx', obj='interval_composite.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libinterval.in', obj='libinterval_igate.obj',
- src='direct/src/interval', module='direct', library='libinterval',
- skip=[], also=["interval_composite.cxx"])
- #
- # DIRECTORY: direct/src/showbase/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/showbase']
- OPTS=['BUILDING_DIRECT', 'NSPR']
- # CopyAllHeaders('direct/src/showbase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='showBase.cxx', obj='showbase_showBase.obj')
- EnqueueIgate(ipath=IPATH, opts=OPTS, outd='libshowbase.in', obj='libshowbase_igate.obj',
- src='direct/src/showbase', module='direct', library='libshowbase',
- skip=[], also=["showBase.cxx"])
- #
- # DIRECTORY: direct/metalibs/direct/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/metalibs/direct']
- OPTS=['BUILDING_DIRECT', 'NSPR']
- # CopyAllHeaders('direct/metalibs/direct')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='direct.cxx', obj='direct_direct.obj')
- EnqueueImod(ipath=IPATH, opts=OPTS, obj='libdirect_module.obj',
- module='direct', library='libdirect',
- files=['libdcparser.in', 'libshowbase.in', 'libdeadrec.in', 'libinterval.in', 'libdistributed.in'])
- EnqueueLink(dll='libdirect.dll', opts=['ADVAPI', 'NSPR', 'OPENSSL'], obj=[
- 'direct_direct.obj',
- 'libdirect_module.obj',
- 'directbase_directbase.obj',
- 'dcparser_composite.obj',
- 'dcparser_dcParser.obj',
- 'dcparser_dcLexer.obj',
- 'libdcparser_igate.obj',
- 'showbase_showBase.obj',
- 'libshowbase_igate.obj',
- 'deadrec_composite.obj',
- 'libdeadrec_igate.obj',
- 'interval_composite.obj',
- 'libinterval_igate.obj',
- 'distributed_config_distributed.obj',
- 'distributed_cConnectionRepository.obj',
- 'distributed_cDistributedSmoothNodeBase.obj',
- 'libdistributed_igate.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: direct/src/dcparse/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/dcparse', 'direct/src/dcparser']
- OPTS=['WITHINPANDA', 'NSPR']
- # CopyAllHeaders('direct/src/dcparse')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dcparse.cxx', obj='dcparse_dcparse.obj')
- EnqueueLink(dll='dcparse.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'dcparse_dcparse.obj',
- 'libdirect.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: direct/src/heapq/
- #
- if (OMIT.count("PYTHON")==0):
- IPATH=['direct/src/heapq']
- OPTS=['NSPR']
- # CopyAllHeaders('direct/src/heapq')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='heapq.cxx', obj='heapq_heapq.obj')
- EnqueueLink(dll='libheapq.dll', opts=['ADVAPI', 'NSPR'], obj=[
- 'heapq_heapq.obj',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: pandatool/src/pandatoolbase/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/pandatoolbase']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/pandatoolbase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandatoolbase_composite1.cxx', obj='pandatoolbase_composite1.obj')
- EnqueueLib(lib='libpandatoolbase.lib', obj=['pandatoolbase_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/converter/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/converter']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/converter')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='somethingToEggConverter.cxx', obj='converter_somethingToEggConverter.obj')
- EnqueueLib(lib='libconverter.lib', obj=['converter_somethingToEggConverter.obj'])
- #
- # DIRECTORY: pandatool/src/progbase/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/progbase']
- OPTS=['NSPR', 'ZLIB']
- # CopyAllHeaders('pandatool/src/progbase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='progbase_composite1.cxx', obj='progbase_composite1.obj')
- EnqueueLib(lib='libprogbase.lib', obj=['progbase_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/eggbase/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/eggbase']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/eggbase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggbase_composite1.cxx', obj='eggbase_composite1.obj')
- EnqueueLib(lib='libeggbase.lib', obj=['eggbase_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/bam/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/bam']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/bam')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='bamInfo.cxx', obj='bam-info_bamInfo.obj')
- EnqueueLink(dll='bam-info.exe', opts=['ADVAPI', 'NSPR', 'FFTW'], obj=[
- 'bam-info_bamInfo.obj',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='bamToEgg.cxx', obj='bam2egg_bamToEgg.obj')
- EnqueueLink(dll='bam2egg.exe', opts=['ADVAPI', 'NSPR', 'FFTW'], obj=[
- 'bam2egg_bamToEgg.obj',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggToBam.cxx', obj='egg2bam_eggToBam.obj')
- EnqueueLink(dll='egg2bam.exe', opts=['ADVAPI', 'NSPR', 'FFTW'], obj=[
- 'egg2bam_eggToBam.obj',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
-
- #
- # DIRECTORY: pandatool/src/cvscopy/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/cvscopy']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/cvscopy')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='cvscopy_composite1.cxx', obj='cvscopy_composite1.obj')
- EnqueueLib(lib='libcvscopy.lib', obj=['cvscopy_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/dxf/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/dxf']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/dxf')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxf_composite1.cxx', obj='dxf_composite1.obj')
- EnqueueLib(lib='libdxf.lib', obj=['dxf_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/dxfegg/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/dxfegg']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/dxfegg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxfToEggConverter.cxx', obj='dxfegg_dxfToEggConverter.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxfToEggLayer.cxx', obj='dxfegg_dxfToEggLayer.obj')
- EnqueueLib(lib='libdxfegg.lib', obj=[
- 'dxfegg_dxfToEggConverter.obj',
- 'dxfegg_dxfToEggLayer.obj',
- ])
- #
- # DIRECTORY: pandatool/src/dxfprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/dxfprogs']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/dxfprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxfPoints.cxx', obj='dxf-points_dxfPoints.obj')
- EnqueueLink(dll='dxf-points.exe', opts=['ADVAPI', 'NSPR', 'FFTW'], obj=[
- 'dxf-points_dxfPoints.obj',
- 'libprogbase.lib',
- 'libdxf.lib',
- 'libpandatoolbase.lib',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='dxfToEgg.cxx', obj='dxf2egg_dxfToEgg.obj')
- EnqueueLink(dll='dxf2egg.exe', opts=['ADVAPI', 'NSPR', 'FFTW'], obj=[
- 'dxf2egg_dxfToEgg.obj',
- 'libdxfegg.lib',
- 'libdxf.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggToDXF.cxx', obj='egg2dxf_eggToDXF.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggToDXFLayer.cxx', obj='egg2dxf_eggToDXFLayer.obj')
- EnqueueLink(dll='egg2dxf.exe', opts=['ADVAPI', 'NSPR', 'FFTW'], obj=[
- 'egg2dxf_eggToDXF.obj',
- 'egg2dxf_eggToDXFLayer.obj',
- 'libdxf.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/palettizer/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/palettizer']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/palettizer')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='palettizer_composite1.cxx', obj='palettizer_composite1.obj')
- EnqueueLib(lib='libpalettizer.lib', obj=['palettizer_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/egg-mkfont/
- #
- if (OMIT.count("FREETYPE")==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/egg-mkfont', 'pandatool/src/palettizer']
- OPTS=['NSPR', 'FREETYPE']
- # CopyAllHeaders('pandatool/src/egg-mkfont')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggMakeFont.cxx', obj='egg-mkfont_eggMakeFont.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='rangeDescription.cxx', obj='egg-mkfont_rangeDescription.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='rangeIterator.cxx', obj='egg-mkfont_rangeIterator.obj')
- EnqueueLink(dll='egg-mkfont.exe', opts=['ADVAPI', 'NSPR', 'FREETYPE'], obj=[
- 'egg-mkfont_eggMakeFont.obj',
- 'egg-mkfont_rangeDescription.obj',
- 'egg-mkfont_rangeIterator.obj',
- 'libpalettizer.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/eggcharbase/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/eggcharbase']
- OPTS=['ZLIB', 'NSPR']
- # CopyAllHeaders('pandatool/src/eggcharbase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggcharbase_composite1.cxx', obj='eggcharbase_composite1.obj')
- EnqueueLib(lib='libeggcharbase.lib', obj=['eggcharbase_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/egg-optchar/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/egg-optchar']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/egg-optchar')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='config_egg_optchar.cxx', obj='egg-optchar_config_egg_optchar.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggOptchar.cxx', obj='egg-optchar_eggOptchar.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggOptcharUserData.cxx', obj='egg-optchar_eggOptcharUserData.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vertexMembership.cxx', obj='egg-optchar_vertexMembership.obj')
- EnqueueLink(dll='egg-optchar.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-optchar_config_egg_optchar.obj',
- 'egg-optchar_eggOptchar.obj',
- 'egg-optchar_eggOptcharUserData.obj',
- 'egg-optchar_vertexMembership.obj',
- 'libeggcharbase.lib',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/egg-palettize/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/egg-palettize', 'pandatool/src/palettizer']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/egg-palettize')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggPalettize.cxx', obj='egg-palettize_eggPalettize.obj')
- EnqueueLink(dll='egg-palettize.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-palettize_eggPalettize.obj',
- 'libpalettizer.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/egg-qtess/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/egg-qtess']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/egg-qtess')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='egg-qtess_composite1.cxx', obj='egg-qtess_composite1.obj')
- EnqueueLink(dll='egg-qtess.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-qtess_composite1.obj',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
-
- #
- # DIRECTORY: pandatool/src/eggprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/eggprogs']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/eggprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggCrop.cxx', obj='egg-crop_eggCrop.obj')
- EnqueueLink(dll='egg-crop.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-crop_eggCrop.obj',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggMakeTube.cxx', obj='egg-make-tube_eggMakeTube.obj')
- EnqueueLink(dll='egg-make-tube.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-make-tube_eggMakeTube.obj',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggTextureCards.cxx', obj='egg-texture-cards_eggTextureCards.obj')
- EnqueueLink(dll='egg-texture-cards.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-texture-cards_eggTextureCards.obj',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggTopstrip.cxx', obj='egg-topstrip_eggTopstrip.obj')
- EnqueueLink(dll='egg-topstrip.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-topstrip_eggTopstrip.obj',
- 'libeggcharbase.lib',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggTrans.cxx', obj='egg-trans_eggTrans.obj')
- EnqueueLink(dll='egg-trans.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-trans_eggTrans.obj',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggToC.cxx', obj='egg2c_eggToC.obj')
- EnqueueLink(dll='egg2c.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg2c_eggToC.obj',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggRename.cxx', obj='egg-rename_eggRename.obj')
- EnqueueLink(dll='egg-rename.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-rename_eggRename.obj',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggRetargetAnim.cxx', obj='egg-retarget-anim_eggRetargetAnim.obj')
- EnqueueLink(dll='egg-retarget-anim.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg-retarget-anim_eggRetargetAnim.obj',
- 'libeggcharbase.lib',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/flt/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/flt']
- OPTS=['NSPR', 'ZLIB']
- # CopyAllHeaders('pandatool/src/flt')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fltVectorRecord.cxx', obj='flt_fltVectorRecord.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='flt_composite1.cxx', obj='flt_composite1.obj')
- EnqueueLib(lib='libflt.lib', obj=['flt_fltVectorRecord.obj', 'flt_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/fltegg/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/fltegg']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/fltegg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fltToEggConverter.cxx', obj='fltegg_fltToEggConverter.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fltToEggLevelState.cxx', obj='fltegg_fltToEggLevelState.obj')
- EnqueueLib(lib='libfltegg.lib', obj=['fltegg_fltToEggConverter.obj', 'fltegg_fltToEggLevelState.obj'])
- #
- # DIRECTORY: pandatool/src/fltprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/fltprogs', 'pandatool/src/flt', 'pandatool/src/cvscopy']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/fltprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggToFlt.cxx', obj='egg2flt_eggToFlt.obj')
- EnqueueLink(dll='egg2flt.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg2flt_eggToFlt.obj',
- 'libflt.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fltInfo.cxx', obj='flt-info_fltInfo.obj')
- EnqueueLink(dll='flt-info.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'flt-info_fltInfo.obj',
- 'libprogbase.lib',
- 'libflt.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fltTrans.cxx', obj='flt-trans_fltTrans.obj')
- EnqueueLink(dll='flt-trans.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'flt-trans_fltTrans.obj',
- 'libprogbase.lib',
- 'libflt.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fltToEgg.cxx', obj='flt2egg_fltToEgg.obj')
- EnqueueLink(dll='flt2egg.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'flt2egg_fltToEgg.obj',
- 'libflt.lib',
- 'libfltegg.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fltCopy.cxx', obj='fltcopy_fltCopy.obj')
- EnqueueLink(dll='fltcopy.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'fltcopy_fltCopy.obj',
- 'libcvscopy.lib',
- 'libflt.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/imagebase/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/imagebase']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/imagebase')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='imagebase_composite1.cxx', obj='imagebase_composite1.obj')
- EnqueueLib(lib='libimagebase.lib', obj=['imagebase_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/imageprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/imageprogs']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/imageprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='imageInfo.cxx', obj='image-info_imageInfo.obj')
- EnqueueLink(dll='image-info.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'image-info_imageInfo.obj',
- 'libimagebase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
-
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='imageResize.cxx', obj='image-resize_imageResize.obj')
- EnqueueLink(dll='image-resize.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'image-resize_imageResize.obj',
- 'libimagebase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
-
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='imageTrans.cxx', obj='image-trans_imageTrans.obj')
- EnqueueLink(dll='image-trans.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'image-trans_imageTrans.obj',
- 'libimagebase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/lwo/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/lwo']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/lwo')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='lwo_composite1.cxx', obj='lwo_composite1.obj')
- EnqueueLib(lib='liblwo.lib', obj=['lwo_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/lwoegg/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/lwoegg']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/lwoegg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='lwoegg_composite1.cxx', obj='lwoegg_composite1.obj')
- EnqueueLib(lib='liblwoegg.lib', obj=['lwoegg_composite1.obj'])
- #
- # DIRECTORY: pandatool/src/lwoprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/lwoprogs', 'pandatool/src/lwo']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/lwoprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='lwoScan.cxx', obj='lwo-scan_lwoScan.obj')
- EnqueueLink(dll='lwo-scan.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'lwo-scan_lwoScan.obj',
- 'liblwo.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
-
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='lwoToEgg.cxx', obj='lwo2egg_lwoToEgg.obj')
- EnqueueLink(dll='lwo2egg.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'lwo2egg_lwoToEgg.obj',
- 'liblwo.lib',
- 'liblwoegg.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/maya/
- #
- for VER in MAYAVERSIONS:
- if (OMIT.count("MAYA"+VER)==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/maya']
- OPTS=['MAYA'+VER, 'NSPR']
- # CopyAllHeaders('pandatool/src/maya')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='maya_composite1.cxx', obj='maya'+VER+'_composite1.obj')
- EnqueueLib(lib='libmaya'+VER+'.lib', obj=[ 'maya'+VER+'_composite1.obj' ])
-
- #
- # DIRECTORY: pandatool/src/mayaegg/
- #
- for VER in MAYAVERSIONS:
- if (OMIT.count("MAYA"+VER)==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/mayaegg', 'pandatool/src/maya']
- OPTS=['MAYA'+VER, 'NSPR']
- # CopyAllHeaders('pandatool/src/mayaegg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mayaEggLoader.cxx', obj='mayaegg'+VER+'_loader.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mayaegg_composite1.cxx', obj='mayaegg'+VER+'_composite1.obj')
- EnqueueLib(lib='libmayaegg'+VER+'.lib', obj=[ 'mayaegg'+VER+'_composite1.obj' ])
- #
- # DIRECTORY: pandatool/src/maxegg/
- #
- for VER in MAXVERSIONS:
- if (OMIT.count("MAX"+VER)==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/maxegg']
- OPTS=['MAX'+VER, 'NSPR', "WINCOMCTL", "WINCOMDLG", "WINUSER", "MSFORSCOPE"]
- # CopyAllHeaders('pandatool/src/maxegg')
- CopyFile("built/tmp/maxEgg.obj", "pandatool/src/maxegg/maxEgg.obj")
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='maxEggLoader.cxx',obj='maxegg'+VER+'_loader.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='maxegg_composite1.cxx',obj='maxegg'+VER+'_composite1.obj')
- EnqueueLink(opts=OPTS, dll='maxegg'+VER+'.dlo', ldef="pandatool/src/maxegg/maxEgg.def", obj=[
- 'maxegg'+VER+'_composite1.obj',
- 'maxEgg.obj',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll'
- ])
- #
- # DIRECTORY: pandatool/src/maxprogs/
- #
- for VER in MAXVERSIONS:
- if (OMIT.count("MAX"+VER)==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/maxprogs']
- OPTS=['MAX'+VER, 'NSPR', "WINCOMCTL", "WINCOMDLG", "WINUSER", "MSFORSCOPE"]
- # CopyAllHeaders('pandatool/src/maxprogs')
- CopyFile("built/tmp/maxImportRes.obj", "pandatool/src/maxprogs/maxImportRes.obj")
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='maxEggImport.cxx',obj='maxprogs'+VER+'_maxeggimport.obj')
- EnqueueLink(opts=OPTS, dll='maxeggimport'+VER+'.dle', ldef="pandatool/src/maxprogs/maxEggImport.def", obj=[
- 'maxegg'+VER+'_loader.obj',
- 'maxprogs'+VER+'_maxeggimport.obj',
- 'maxImportRes.obj',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll'
- ])
- #
- # DIRECTORY: pandatool/src/vrml/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/vrml']
- OPTS=['ZLIB', 'NSPR']
- # CopyAllHeaders('pandatool/src/vrml')
- EnqueueBison(ipath=IPATH, opts=OPTS, pre='vrmlyy', src='vrmlParser.yxx', dsth='vrmlParser.h', obj='pvrml_vrmlParser.obj')
- EnqueueFlex(ipath=IPATH, opts=OPTS, pre='vrmlyy', src='vrmlLexer.lxx', obj='pvrml_vrmlLexer.obj', dashi=0)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='parse_vrml.cxx', obj='pvrml_parse_vrml.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='standard_nodes.cxx', obj='pvrml_standard_nodes.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vrmlNode.cxx', obj='pvrml_vrmlNode.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vrmlNodeType.cxx', obj='pvrml_vrmlNodeType.obj')
- EnqueueLib(lib='libpvrml.lib', obj=[
- 'pvrml_parse_vrml.obj',
- 'pvrml_standard_nodes.obj',
- 'pvrml_vrmlNode.obj',
- 'pvrml_vrmlNodeType.obj',
- 'pvrml_vrmlParser.obj',
- 'pvrml_vrmlLexer.obj',
- ])
- #
- # DIRECTORY: pandatool/src/vrmlegg/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/vrmlegg', 'pandatool/src/vrml']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/vrmlegg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='indexedFaceSet.cxx', obj='vrmlegg_indexedFaceSet.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vrmlAppearance.cxx', obj='vrmlegg_vrmlAppearance.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vrmlToEggConverter.cxx', obj='vrmlegg_vrmlToEggConverter.obj')
- EnqueueLib(lib='libvrmlegg.lib', obj=[
- 'vrmlegg_indexedFaceSet.obj',
- 'vrmlegg_vrmlAppearance.obj',
- 'vrmlegg_vrmlToEggConverter.obj',
- ])
- #
- # DIRECTORY: pandatool/src/xfile/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/xfile']
- OPTS=['ZLIB', 'NSPR']
- # CopyAllHeaders('pandatool/src/xfile')
- EnqueueBison(ipath=IPATH, opts=OPTS, pre='xyy', src='xParser.yxx', dsth='xParser.h', obj='xfile_xParser.obj')
- EnqueueFlex(ipath=IPATH, opts=OPTS, pre='xyy', src='xLexer.lxx', obj='xfile_xLexer.obj', dashi=1)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='xfile_composite1.cxx', obj='xfile_composite1.obj')
- EnqueueLib(lib='libxfile.lib', obj=[
- 'xfile_composite1.obj',
- 'xfile_xParser.obj',
- 'xfile_xLexer.obj',
- ])
- #
- # DIRECTORY: pandatool/src/xfileegg/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/xfileegg', 'pandatool/src/xfile']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/xfileegg')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='xfileegg_composite1.cxx', obj='xfileegg_composite1.obj')
- EnqueueLib(lib='libxfileegg.lib', obj=[
- 'xfileegg_composite1.obj',
- ])
- #
- # DIRECTORY: pandatool/src/ptloader/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/ptloader', 'pandatool/src/flt', 'pandatool/src/lwo', 'pandatool/src/xfile', 'pandatool/src/xfileegg']
- OPTS=['BUILDING_PTLOADER', 'NSPR']
- # CopyAllHeaders('pandatool/src/ptloader')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='config_ptloader.cxx', obj='ptloader_config_ptloader.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='loaderFileTypePandatool.cxx', obj='ptloader_loaderFileTypePandatool.obj')
- EnqueueLink(dll='libptloader.dll', opts=['ADVAPI', 'NSPR'], obj=[
- 'ptloader_config_ptloader.obj',
- 'ptloader_loaderFileTypePandatool.obj',
- 'libfltegg.lib',
- 'libflt.lib',
- 'liblwoegg.lib',
- 'liblwo.lib',
- 'libdxfegg.lib',
- 'libdxf.lib',
- 'libvrmlegg.lib',
- 'libpvrml.lib',
- 'libxfileegg.lib',
- 'libxfile.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- #
- # DIRECTORY: pandatool/src/mayaprogs/
- #
- for VER in MAYAVERSIONS:
- if (OMIT.count('MAYA'+VER)==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/mayaprogs', 'pandatool/src/maya', 'pandatool/src/mayaegg',
- 'pandatool/src/cvscopy']
- OPTS=['BUILDING_MISC', 'MAYA'+VER, 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mayaEggImport.cxx', obj='mayaeggimport'+VER+'_mayaeggimport.obj')
- EnqueueLink(opts=OPTS, dll='mayaeggimport'+VER+'.mll', obj=[
- 'mayaegg'+VER+'_loader.obj',
- 'mayaeggimport'+VER+'_mayaeggimport.obj',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll'
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='config_mayaloader.cxx', obj='mayaloader'+VER+'_config_mayaloader.obj')
- EnqueueLink(dll='libmayaloader'+VER+'.dll', opts=['ADVAPI', 'NSPR', 'MAYA'+VER], obj=[
- 'mayaloader'+VER+'_config_mayaloader.obj',
- 'libmayaegg'+VER+'.lib',
- 'libptloader.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libmaya'+VER+'.lib',
- 'libfltegg.lib',
- 'libflt.lib',
- 'liblwoegg.lib',
- 'liblwo.lib',
- 'libdxfegg.lib',
- 'libdxf.lib',
- 'libvrmlegg.lib',
- 'libpvrml.lib',
- 'libxfileegg.lib',
- 'libxfile.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mayaPview.cxx', obj='mayapview'+VER+'_mayaPview.obj')
- EnqueueLink(dll='libmayapview'+VER+'.mll', opts=['ADVAPI', 'NSPR', 'MAYA'+VER], obj=[
- 'mayapview'+VER+'_mayaPview.obj',
- 'libmayaegg'+VER+'.lib',
- 'libmaya'+VER+'.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libframework.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mayaToEgg.cxx', obj='maya2egg'+VER+'_mayaToEgg.obj')
- EnqueueLink(dll='maya2egg'+VER+'.exe', opts=['ADVAPI', 'NSPR', 'MAYA'+VER], obj=[
- 'maya2egg'+VER+'_mayaToEgg.obj',
- 'libmayaegg'+VER+'.lib',
- 'libmaya'+VER+'.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libconverter.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mayaCopy.cxx', obj='mayacopy'+VER+'_mayaCopy.obj')
- EnqueueLink(dll='mayacopy'+VER+'.exe', opts=['ADVAPI', 'NSPR', 'MAYA'+VER], obj=[
- 'mayacopy'+VER+'_mayaCopy.obj',
- 'libcvscopy.lib',
- 'libmaya'+VER+'.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='mayaSavePview.cxx', obj='mayasavepview'+VER+'_mayaSavePview.obj')
- EnqueueLink(dll='libmayasavepview'+VER+'.mll', opts=['ADVAPI', 'NSPR', 'MAYA'+VER], obj=[
- 'mayasavepview'+VER+'_mayaSavePview.obj',
- ])
- #
- # DIRECTORY: pandatool/src/miscprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/miscprogs']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/miscprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='binToC.cxx', obj='bin2c_binToC.obj')
- EnqueueLink(dll='bin2c.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'bin2c_binToC.obj',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/pstatserver/
- #
- if (OMIT.count("NSPR")==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/pstatserver']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/pstatserver')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pstatserver_composite1.cxx', obj='pstatserver_composite1.obj')
- EnqueueLib(lib='libpstatserver.lib', obj=[ 'pstatserver_composite1.obj' ])
- #
- # DIRECTORY: pandatool/src/softprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/softprogs']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/softprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='softCVS.cxx', obj='softcvs_softCVS.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='softFilename.cxx', obj='softcvs_softFilename.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR'], dll='softcvs.exe', obj=[
- 'softcvs_softCVS.obj',
- 'softcvs_softFilename.obj',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/text-stats/
- #
- if (OMIT.count("NSPR")==0) and (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/text-stats']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/text-stats')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='textMonitor.cxx', obj='text-stats_textMonitor.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='textStats.cxx', obj='text-stats_textStats.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR'], dll='text-stats.exe', obj=[
- 'text-stats_textMonitor.obj',
- 'text-stats_textStats.obj',
- 'libprogbase.lib',
- 'libpstatserver.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/vrmlprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/vrmlprogs', 'pandatool/src/vrml', 'pandatool/src/vrmlegg']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/vrmlprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vrmlTrans.cxx', obj='vrml-trans_vrmlTrans.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR'], dll='vrml-trans.exe', obj=[
- 'vrml-trans_vrmlTrans.obj',
- 'libprogbase.lib',
- 'libpvrml.lib',
- 'libpandatoolbase.lib',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='vrmlToEgg.cxx', obj='vrml2egg_vrmlToEgg.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR'], dll='vrml2egg.exe', obj=[
- 'vrml2egg_vrmlToEgg.obj',
- 'libvrmlegg.lib',
- 'libpvrml.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/win-stats/
- #
- if (OMIT.count("NSPR")==0) and (OMIT.count("PANDATOOL")==0) and (sys.platform == "win32"):
- IPATH=['pandatool/src/win-stats']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/win-stats')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='winstats_composite1.cxx', obj='pstats_composite1.obj')
- EnqueueLink(opts=['WINSOCK', 'WINIMM', 'WINGDI', 'WINKERNEL', 'WINOLDNAMES', 'WINUSER', 'WINMM', 'NSPR'],
- dll='pstats.exe', obj=[
- 'pstats_composite1.obj',
- 'libprogbase.lib',
- 'libpstatserver.lib',
- 'libpandatoolbase.lib',
- 'libpandaexpress.dll',
- 'libpanda.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandatool/src/xfileprogs/
- #
- if (OMIT.count("PANDATOOL")==0):
- IPATH=['pandatool/src/xfileprogs', 'pandatool/src/xfile', 'pandatool/src/xfileegg']
- OPTS=['NSPR']
- # CopyAllHeaders('pandatool/src/xfileprogs')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='eggToX.cxx', obj='egg2x_eggToX.obj')
- EnqueueLink(dll='egg2x.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'egg2x_eggToX.obj',
- 'libxfileegg.lib',
- 'libxfile.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='xFileTrans.cxx', obj='x-trans_xFileTrans.obj')
- EnqueueLink(dll='x-trans.exe', opts=['ADVAPI', 'NSPR'], obj=[
- 'x-trans_xFileTrans.obj',
- 'libprogbase.lib',
- 'libxfile.lib',
- 'libpandatoolbase.lib',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='xFileToEgg.cxx', obj='x2egg_xFileToEgg.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR'], dll='x2egg.exe', obj=[
- 'x2egg_xFileToEgg.obj',
- 'libxfileegg.lib',
- 'libxfile.lib',
- 'libconverter.lib',
- 'libeggbase.lib',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpandaegg.dll',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandaapp/src/pandaappbase/
- #
- if (OMIT.count("PANDAAPP")==0):
- IPATH=['pandaapp/src/pandaappbase']
- OPTS=['NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='pandaappbase.cxx', obj='pandaappbase_pandaappbase.obj')
- EnqueueLib(lib='libpandaappbase.lib', obj=['pandaappbase_pandaappbase.obj'])
- #
- # DIRECTORY: pandaapp/src/httpbackup/
- #
- if (OMIT.count("OPENSSL")==0) and (OMIT.count("PANDAAPP")==0):
- IPATH=['pandaapp/src/httpbackup', 'pandaapp/src/pandaappbase']
- OPTS=['OPENSSL', 'NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='backupCatalog.cxx', obj='httpbackup_backupCatalog.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='httpBackup.cxx', obj='httpbackup_httpBackup.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'OPENSSL'], dll='httpbackup.exe', obj=[
- 'httpbackup_backupCatalog.obj',
- 'httpbackup_httpBackup.obj',
- 'libpandaappbase.lib',
- 'libpandaexpress.dll',
- 'libpanda.dll',
- 'libdtool.dll',
- 'libdtoolconfig.dll',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandaapp/src/indexify/
- #
- if (OMIT.count("FREETYPE")==0) and (OMIT.count("PANDAAPP")==0):
- IPATH=['pandaapp/src/indexify']
- OPTS=['NSPR', 'FREETYPE']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='default_font.cxx', obj='font-samples_default_font.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='fontSamples.cxx', obj='font-samples_fontSamples.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'FREETYPE'], dll='font-samples.exe', obj=[
- 'font-samples_default_font.obj',
- 'font-samples_fontSamples.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtool.dll',
- 'libdtoolconfig.dll',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpystub.dll',
- ])
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='default_index_icons.cxx', obj='indexify_default_index_icons.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='default_font.cxx', obj='indexify_default_font.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='indexImage.cxx', obj='indexify_indexImage.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='indexParameters.cxx', obj='indexify_indexParameters.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='indexify.cxx', obj='indexify_indexify.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='photo.cxx', obj='indexify_photo.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='rollDirectory.cxx', obj='indexify_rollDirectory.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'FREETYPE'], dll='indexify.exe', obj=[
- 'indexify_default_index_icons.obj',
- 'indexify_default_font.obj',
- 'indexify_indexImage.obj',
- 'indexify_indexParameters.obj',
- 'indexify_indexify.obj',
- 'indexify_photo.obj',
- 'indexify_rollDirectory.obj',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtool.dll',
- 'libdtoolconfig.dll',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libpystub.dll',
- ])
- #
- # DIRECTORY: pandaapp/src/stitchbase/
- #
- if (OMIT.count("PANDAAPP")==0):
- IPATH=['pandaapp/src/stitchbase', 'pandaapp/src/pandaappbase']
- OPTS=['NSPR']
- EnqueueBison(ipath=IPATH, opts=OPTS, pre='stitchyy', src='stitchParser.yxx', dsth='stitchParser.h', obj='stitchbase_stitchParser.obj')
- EnqueueFlex(ipath=IPATH, opts=OPTS, pre='stitchyy', src='stitchLexer.lxx', obj='stitchbase_stitchLexer.obj', dashi=1)
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='stitchbase_composite1.cxx', obj='stitchbase_composite1.obj')
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='stitchbase_composite2.cxx', obj='stitchbase_composite2.obj')
- EnqueueLib(lib='libstitchbase.lib', obj=[
- 'stitchbase_composite1.obj',
- 'stitchbase_composite2.obj',
- 'stitchbase_stitchParser.obj',
- 'stitchbase_stitchLexer.obj',
- ])
- #
- # DIRECTORY: pandaapp/src/stitch/
- #
- if (OMIT.count("PANDAAPP")==0):
- IPATH=['pandaapp/src/stitch', 'pandaapp/src/stitchbase', 'pandaapp/src/pandaappbase']
- OPTS=['NSPR']
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='stitchCommandProgram.cxx', obj='stitch-command_stitchCommandProgram.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'FFTW'], dll='stitch-command.exe', obj=[
- 'stitch-command_stitchCommandProgram.obj',
- 'libstitchbase.lib',
- 'libpandaappbase.lib',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpystub.dll',
- ])
-
- EnqueueCxx(ipath=IPATH, opts=OPTS, src='stitchImageProgram.cxx', obj='stitch-image_stitchImageProgram.obj')
- EnqueueLink(opts=['ADVAPI', 'NSPR', 'FFTW'], dll='stitch-image.exe', obj=[
- 'stitch-image_stitchImageProgram.obj',
- 'libstitchbase.lib',
- 'libpandaappbase.lib',
- 'libpanda.dll',
- 'libpandaexpress.dll',
- 'libdtoolconfig.dll',
- 'libdtool.dll',
- 'libprogbase.lib',
- 'libpandatoolbase.lib',
- 'libconverter.lib',
- 'libpystub.dll',
- ])
- #
- # Generate the models directory
- #
- if (OMIT.count("PANDATOOL")==0):
- EnqueueBam("-pr ../=", "built/models/gui/dialog_box_gui.bam", "dmodels/src/gui/dialog_box_gui.flt")
- EnqueueBam("-pr ../=", "built/models/misc/camera.bam", "dmodels/src/misc/camera.flt")
- EnqueueBam("-pr ../=", "built/models/misc/fade.bam", "dmodels/src/misc/fade.flt")
- EnqueueBam("-pr ../=", "built/models/misc/fade_sphere.bam", "dmodels/src/misc/fade_sphere.flt")
- EnqueueBam("-pr ../=", "built/models/misc/gridBack.bam", "dmodels/src/misc/gridBack.flt")
- EnqueueBam("-pr ../=", "built/models/misc/iris.bam", "dmodels/src/misc/iris.flt")
- EnqueueBam("-pr ../=", "built/models/misc/lilsmiley.bam", "dmodels/src/misc/lilsmiley.egg")
- EnqueueBam("-pr ../=", "built/models/misc/objectHandles.bam", "dmodels/src/misc/objectHandles.flt")
- EnqueueBam("-pr ../=", "built/models/misc/rgbCube.bam", "dmodels/src/misc/rgbCube.flt")
- EnqueueBam("-pr ../=", "built/models/misc/smiley.bam", "dmodels/src/misc/smiley.egg")
- EnqueueBam("-pr ../=", "built/models/misc/sphere.bam", "dmodels/src/misc/sphere.flt")
- EnqueueBam("-pr ../=", "built/models/misc/Pointlight.bam", "dmodels/src/misc/Pointlight.egg")
- EnqueueBam("-pr ../=", "built/models/misc/Dirlight.bam", "dmodels/src/misc/Dirlight.egg")
- EnqueueBam("-pr ../=", "built/models/misc/Spotlight.bam", "dmodels/src/misc/Spotlight.egg")
- EnqueueBam("-pr ../=", "built/models/misc/xyzAxis.bam", "dmodels/src/misc/xyzAxis.flt")
-
- CopyAllFiles("built/models/audio/sfx/", "dmodels/src/audio/sfx/", ".wav")
- CopyAllFiles("built/models/icons/", "dmodels/src/icons/", ".gif")
-
- CopyAllFiles("built/models/", "models/", ".egg")
- CopyAllFiles("built/models/", "models/", ".bam")
-
- CopyAllFiles("built/models/maps/", "models/maps/", ".jpg")
- CopyAllFiles("built/models/maps/", "models/maps/", ".png")
- CopyAllFiles("built/models/maps/", "models/maps/", ".rgb")
- CopyAllFiles("built/models/maps/", "models/maps/", ".rgba")
-
- CopyAllFiles("built/models/maps/", "dmodels/src/maps/", ".jpg")
- CopyAllFiles("built/models/maps/", "dmodels/src/maps/", ".png")
- CopyAllFiles("built/models/maps/", "dmodels/src/maps/", ".rgb")
- CopyAllFiles("built/models/maps/", "dmodels/src/maps/", ".rgba")
- ##########################################################################################
- #
- # Dependency-Based Distributed Build System.
- #
- ##########################################################################################
- def BuildWorker(taskqueue, donequeue, slave):
- print "Slave online: "+slave
- while (1):
- task = taskqueue.get()
- sys.stdout.flush()
- if (task == 0): return
- try:
- apply(task[0],task[1])
- donequeue.put(task)
- except:
- donequeue.put(0)
- def AllSourcesReady(task, pending):
- sources = task[3]
- for x in sources:
- if (pending.has_key(x)):
- return 0
- altsources = task[4]
- for x in altsources:
- if (pending.has_key(x)):
- return 0
- return 1
- def ParallelMake(tasklist):
- # Read the slave-file.
- slaves = []
- for i in range(THREADCOUNT):
- slaves.append("local")
- # create the communication queues.
- donequeue=Queue.Queue()
- taskqueue=Queue.Queue()
- # build up a table listing all the pending targets
- pending = {}
- for task in tasklist:
- for target in task[2]:
- pending[target] = 1
- # create the workers
- for slave in slaves:
- th = threading.Thread(target=BuildWorker, args=[taskqueue,donequeue,slave])
- th.setDaemon(1)
- th.start()
- # feed tasks to the workers.
- tasksqueued = 0
- while (1):
- if (tasksqueued < len(slaves)*2):
- extras = []
- for task in tasklist:
- if (tasksqueued < len(slaves)*3) & (AllSourcesReady(task, pending)):
- if (NeedsBuild(task[2], task[3])):
- tasksqueued += 1
- taskqueue.put(task)
- else:
- for target in task[2]:
- del pending[target]
- else:
- extras.append(task)
- tasklist = extras
- sys.stdout.flush()
- if (tasksqueued == 0): break
- donetask = donequeue.get()
- if (donetask == 0):
- exit("Build process aborting.")
- sys.stdout.flush()
- tasksqueued -= 1
- JustBuilt(donetask[2], donetask[3])
- for target in donetask[2]:
- del pending[target]
- # kill the workers.
- for slave in slaves:
- taskqueue.put(0)
- # make sure there aren't any unsatisfied tasks
- if (len(tasklist)>0):
- exit("Dependency problem - task unsatisfied: "+str(tasklist[0][2]))
- def SequentialMake(tasklist):
- for task in tasklist:
- if (NeedsBuild(task[2], task[3])):
- apply(task[0], task[1])
- JustBuilt(task[2], task[3])
- def RunDependencyQueue(tasklist):
- if (THREADCOUNT!=0):
- ParallelMake(tasklist)
- else:
- SequentialMake(tasklist)
- RunDependencyQueue(DEPENDENCYQUEUE)
- ##########################################################################################
- #
- # Copy Sounds, Icons, and Models into the build.
- #
- ##########################################################################################
- ##########################################################################################
- #
- # Run genpycode
- #
- ##########################################################################################
- if (OMIT.count("PYTHON")==0):
- allin = os.listdir("built/pandac/input")
- inputs = xpaths("built/pandac/input/",allin,"")
- if (NeedsBuild(['built/pandac/PandaModules.py'],inputs)):
- if (GENMAN): oscmd("built/bin/genpycode -d")
- else : oscmd("built/bin/genpycode")
- JustBuilt(['built/pandac/PandaModules.py'],inputs)
- ##########################################################################################
- #
- # The Installers
- #
- # Under windows, we can build an 'exe' package using NSIS
- # Under linux, we can build an 'deb' package using dpkg-deb
- # Makepanda does not build RPMs. To do that, use 'rpm -tb' on the source tarball.
- #
- ##########################################################################################
- def MakeInstallerNSIS(file,fullname,smdirectory,installdir):
- print "Building "+fullname+" installer. This can take up to an hour."
- if (COMPRESSOR != "lzma"):
- print("Note: you are using zlib, which is faster, but lzma gives better compression.")
- if (os.path.exists(file)):
- os.remove(file)
- if (os.path.exists("nsis-output.exe")):
- os.remove("nsis-output.exe")
- psource=os.path.abspath(".")
- panda=os.path.abspath("built")
- cmd="thirdparty/win-nsis/makensis /V2 "
- cmd=cmd+'/DCOMPRESSOR="'+COMPRESSOR+'" '
- cmd=cmd+'/DNAME="'+fullname+'" '
- cmd=cmd+'/DSMDIRECTORY="'+smdirectory+'" '
- cmd=cmd+'/DINSTALLDIR="'+installdir+'" '
- cmd=cmd+'/DOUTFILE="'+psource+'\\nsis-output.exe" '
- cmd=cmd+'/DLICENSE="'+panda+'\\LICENSE" '
- cmd=cmd+'/DLANGUAGE="Panda3DEnglish" '
- cmd=cmd+'/DRUNTEXT="Run the Panda Greeting Card" '
- cmd=cmd+'/DIBITMAP="panda-install.bmp" '
- cmd=cmd+'/DUBITMAP="panda-uninstall.bmp" '
- cmd=cmd+'/DPANDA="'+panda+'" '
- cmd=cmd+'/DPSOURCE="'+psource+'" '
- cmd=cmd+'/DPYEXTRAS="'+psource+'\\thirdparty\\win-extras" '
- cmd=cmd+'"'+psource+'\\direct\\src\\directscripts\\packpanda.nsi"'
- oscmd( cmd)
- os.rename("nsis-output.exe", file)
- def MakeInstallerDPKG(file):
- DEB="""
- Package: panda3d
- Version: VERSION
- Section: libdevel
- Priority: optional
- Architecture: i386
- Essential: no
- Depends: PYTHONV
- Provides: panda3d
- Maintainer: [email protected]
- Description: The panda3D free 3D engine
- """
- import compileall
- PYTHONV=os.path.basename(PYTHONSDK)
- if (os.path.isdir("debtmp")): oscmd( "chmod -R 755 debtmp")
- oscmd("rm -rf debtmp data.tar.gz control.tar.gz ")
- oscmd("mkdir -p debtmp/usr/bin")
- oscmd("mkdir -p debtmp/usr/include")
- oscmd("mkdir -p debtmp/usr/share/panda3d")
- oscmd("mkdir -p debtmp/usr/lib/"+PYTHONV+"/lib-dynload")
- oscmd("mkdir -p debtmp/usr/lib/"+PYTHONV+"/site-packages")
- oscmd("mkdir -p debtmp/etc")
- oscmd("mkdir -p debtmp/DEBIAN")
- oscmd("sed -e 's@$THIS_PRC_DIR/[.][.]@/usr/share/panda3d@' < built/etc/Config.prc > debtmp/etc/Config.prc")
- oscmd("cp built/etc/Confauto.prc debtmp/etc/Confauto.prc")
- oscmd("cp --recursive built/include debtmp/usr/include/panda3d")
- oscmd("cp --recursive direct debtmp/usr/share/panda3d/direct")
- oscmd("cp --recursive built/pandac debtmp/usr/share/panda3d/pandac")
- oscmd("cp --recursive built/Pmw debtmp/usr/share/panda3d/Pmw")
- oscmd("cp built/direct/__init__.py debtmp/usr/share/panda3d/direct/__init__.py")
- oscmd("cp --recursive SceneEditor debtmp/usr/share/panda3d/SceneEditor")
- oscmd("cp --recursive built/models debtmp/usr/share/panda3d/models")
- oscmd("cp --recursive samples debtmp/usr/share/panda3d/samples")
- oscmd("cp doc/LICENSE debtmp/usr/share/panda3d/LICENSE")
- oscmd("cp doc/LICENSE debtmp/usr/include/panda3d/LICENSE")
- oscmd("cp doc/ReleaseNotes debtmp/usr/share/panda3d/ReleaseNotes")
- oscmd("echo '/usr/share/panda3d' > debtmp/usr/lib/"+PYTHONV+"/site-packages/panda3d.pth")
- oscmd("cp built/bin/* debtmp/usr/bin/")
- for base in os.listdir("built/lib"):
- oscmd("ln -sf /usr/lib/"+base+" debtmp/usr/lib/"+PYTHONV+"/lib-dynload/"+base)
- oscmd("cp built/lib/"+base+" debtmp/usr/lib/"+base)
- for base in os.listdir("debtmp/usr/share/panda3d/direct/src"):
- if ((base != "extensions") and (base != "extensions_native")):
- compileall.compile_dir("debtmp/usr/share/panda3d/direct/src/"+base)
- compileall.compile_dir("debtmp/usr/share/panda3d/Pmw")
- compileall.compile_dir("debtmp/usr/share/panda3d/SceneEditor")
- oscmd("chmod -R 555 debtmp/usr/share/panda3d")
- oscmd("cd debtmp ; (find usr -type f -exec md5sum {} \;) > DEBIAN/md5sums")
- oscmd("cd debtmp ; (find etc -type f -exec md5sum {} \;) >> DEBIAN/md5sums")
- WriteFile("debtmp/DEBIAN/conffiles","/etc/Config.prc\n")
- WriteFile("debtmp/DEBIAN/control",DEB[1:].replace("VERSION",str(VERSION)).replace("PYTHONV",PYTHONV))
- oscmd("dpkg-deb -b debtmp "+file)
- oscmd("chmod -R 755 debtmp")
- oscmd("rm -rf debtmp")
- if (INSTALLER != 0):
- if (sys.platform == "win32"):
- MakeInstallerNSIS("Panda3D-"+VERSION+".exe", "Panda3D", "Panda3D "+VERSION, "C:\\Panda3D-"+VERSION)
- elif (sys.platform == "linux2") and (os.path.isfile("/usr/bin/dpkg-deb")):
- MakeInstallerDPKG("panda3d_"+VERSION+"_i386.deb")
- else:
- exit("Do not know how to make an installer for this platform")
- ##########################################################################################
- #
- # Print final status report.
- #
- ##########################################################################################
- SaveDependencyCache()
- WARNINGS.append("Elapsed Time: "+PrettyTime(time.time() - STARTTIME))
- #WARNINGS.append("Time(EnqueueCxx): "+PrettyTime(TIMECOMPILEC))
- #WARNINGS.append("Time(CompileLib): "+PrettyTime(TIMECOMPILELIB))
- #WARNINGS.append("Time(EnqueueLink): "+PrettyTime(TIMECOMPILELINK))
- #WARNINGS.append("Time(EnqueueIgate): "+PrettyTime(TIMEINTERROGATE))
- #WARNINGS.append("Time(EnqueueImod): "+PrettyTime(TIMEINTERROGATEMODULE))
- printStatus("Makepanda Final Status Report", WARNINGS)
|