[DEV] update the maker

This commit is contained in:
Edouard DUPIN 2013-04-19 22:31:55 +02:00
parent c288f87914
commit 3c84f23849
3 changed files with 11 additions and 2 deletions

2
build

@ -1 +1 @@
Subproject commit e5235b45dfcfd11e28626b6cfe93360e3eac4541
Subproject commit 860d7607affca2c1ce9bbc8c8802dceaa339e9d7

View File

@ -1,7 +1,7 @@
#!/usr/bin/python
import module
myModule = module.module(__file__, 'zlib', 'LIBRARY')
myModule = module.module(__file__, 'zlib', 'PREBUILD')
myModule.AddExportflag_LD('-lz')

View File

@ -174,3 +174,12 @@ myModule.AddSrcFile('ewol/renderer/os/gui.X11.cpp')
# add the currrent module at the
module.AddModule(myModule)
# a better way to do this :
#module.AddModule("moduleName")
# and a function to create the module properties :
#def createModule(target):
# # and inside target we have some other informations :
# if target.debugMode==0:
# ...
# The idea is here ....