ewol/sources/lutin_ewol.py

240 lines
7.2 KiB
Python
Raw Normal View History

2013-04-21 22:29:27 +02:00
#!/usr/bin/python
2013-12-23 22:38:46 +01:00
import lutinModule as module
import lutinTools as tools
import os
2013-07-11 13:54:04 +02:00
import lutinMultiprocess
2013-04-21 22:29:27 +02:00
2013-12-23 22:38:46 +01:00
def get_desc():
return "ewol is a main library to use widget in the openGl environement and manage all the wraping os"
def create(target):
# set the ewol folder for Android basic sources ...
2013-12-23 22:38:46 +01:00
target.set_ewol_folder(tools.get_current_path(__file__) + "/../")
2013-04-21 22:29:27 +02:00
# module name is 'edn' and type binary.
2013-12-23 22:38:46 +01:00
myModule = module.Module(__file__, 'ewol', 'LIBRARY')
2013-12-22 19:05:43 +01:00
# add extra compilation flags :
myModule.add_extra_compile_flags()
2013-04-21 22:29:27 +02:00
# add the file to compile:
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
2013-04-21 22:29:27 +02:00
'ewol/ewol.cpp',
2013-12-12 22:59:31 +01:00
'ewol/debug.cpp',
'ewol/Padding.cpp',
2014-05-07 23:30:15 +02:00
'ewol/Dimension.cpp',
'ewol/translate.cpp'
])
2013-04-21 22:29:27 +02:00
# compositing :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
'ewol/compositing/Compositing.cpp',
2014-01-14 21:50:21 +01:00
'ewol/compositing/TextBase.cpp',
'ewol/compositing/Text.cpp',
'ewol/compositing/TextDF.cpp',
'ewol/compositing/Drawing.cpp',
'ewol/compositing/Image.cpp',
'ewol/compositing/Sprite.cpp',
'ewol/compositing/Shaper.cpp',
'ewol/compositing/Area.cpp'
])
# context :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
'ewol/context/clipBoard.cpp',
'ewol/context/commandLine.cpp',
'ewol/context/ConfigFont.cpp',
'ewol/context/Context.cpp',
'ewol/context/cursor.cpp',
'ewol/context/InputManager.cpp'
])
if target.name=="Linux":
2013-12-23 22:38:46 +01:00
myModule.add_src_file('ewol/context/X11/Context.cpp')
elif target.name=="Windows":
myModule.add_src_file('ewol/context/Windows/Context.cpp')
elif target.name=="Android":
myModule.add_src_file('ewol/context/Android/Context.cpp')
elif target.name=="MacOs":
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
'ewol/context/MacOs/Context.cpp',
'ewol/context/MacOs/Interface.mm',
'ewol/context/MacOs/Windows.mm',
'ewol/context/MacOs/OpenglView.mm',
'ewol/context/MacOs/AppDelegate.mm'])
2014-01-14 07:41:39 +01:00
elif target.name=="IOs":
myModule.add_src_file([
2014-04-17 01:25:28 +02:00
'ewol/context/IOs/Context.cpp',
'ewol/context/IOs/Interface.m',
'ewol/context/IOs/OpenglView.mm',
'ewol/context/IOs/AppDelegate.mm'])
else:
debug.error("unknow mode...")
2013-04-21 22:29:27 +02:00
2013-12-13 21:58:20 +01:00
# event properties :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
2013-12-13 21:58:20 +01:00
'ewol/event/Entry.cpp',
'ewol/event/Time.cpp',
'ewol/event/Input.cpp'
])
# Key properties :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
'ewol/key/keyboard.cpp',
'ewol/key/Special.cpp',
'ewol/key/status.cpp',
'ewol/key/type.cpp'
])
# object :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
'ewol/object/Config.cpp',
'ewol/object/ConfigElement.cpp',
'ewol/object/Manager.cpp',
'ewol/object/Message.cpp',
'ewol/object/MultiCast.cpp',
'ewol/object/Object.cpp',
'ewol/object/RemoveEvent.cpp'
])
2013-04-21 22:29:27 +02:00
# OpenGL interface :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
'ewol/openGL/openGL.cpp'
])
2013-04-21 22:29:27 +02:00
# resources :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
'ewol/resource/Colored3DObject.cpp',
'ewol/resource/ColorFile.cpp',
'ewol/resource/ConfigFile.cpp',
'ewol/resource/FontFreeType.cpp',
'ewol/resource/Image.cpp',
'ewol/resource/ImageDF.cpp',
'ewol/resource/Manager.cpp',
'ewol/resource/Program.cpp',
'ewol/resource/Resource.cpp',
'ewol/resource/Shader.cpp',
'ewol/resource/Texture.cpp',
'ewol/resource/TexturedFont.cpp',
'ewol/resource/DistanceFieldFont.cpp',
'ewol/resource/VirtualBufferObject.cpp'
])
# widget :
2013-12-23 22:38:46 +01:00
myModule.add_src_file([
2013-04-21 22:29:27 +02:00
'ewol/widget/ButtonColor.cpp',
'ewol/widget/Button.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/CheckBox.cpp',
'ewol/widget/ColorBar.cpp',
'ewol/widget/Composer.cpp',
'ewol/widget/Container.cpp',
2014-01-23 21:12:54 +01:00
'ewol/widget/Container2.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/ContainerN.cpp',
'ewol/widget/ContextMenu.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/Entry.cpp',
'ewol/widget/Gird.cpp',
'ewol/widget/Image.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/Joystick.cpp',
'ewol/widget/Label.cpp',
'ewol/widget/Layer.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/List.cpp',
'ewol/widget/ListFileSystem.cpp',
'ewol/widget/Manager.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/Menu.cpp',
'ewol/widget/meta/ColorChooser.cpp',
'ewol/widget/meta/FileChooser.cpp',
'ewol/widget/meta/Parameter.cpp',
'ewol/widget/meta/ParameterList.cpp',
'ewol/widget/meta/StdPopUp.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/PopUp.cpp',
'ewol/widget/ProgressBar.cpp',
'ewol/widget/Scroll.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/Sizer.cpp',
'ewol/widget/Slider.cpp',
'ewol/widget/Spacer.cpp',
2013-12-13 21:58:20 +01:00
'ewol/widget/Widget.cpp',
2013-04-21 22:29:27 +02:00
'ewol/widget/WidgetScrolled.cpp',
'ewol/widget/Windows.cpp',
'ewol/widget/WSlider.cpp',
])
2013-04-21 22:29:27 +02:00
myModule.copy_folder('../data/theme/shape/square/*','theme/shape/square')
myModule.copy_folder('../data/theme/shape/round/*','theme/shape/round')
myModule.copy_folder('../data/theme/color/black/*','theme/color/black')
myModule.copy_folder('../data/theme/color/white/*','theme/color/white')
2013-12-23 22:38:46 +01:00
myModule.copy_folder('../data/textured.*','')
myModule.copy_folder('../data/texturedNoMaterial.*','')
myModule.copy_folder('../data/text.*','')
myModule.copy_folder('../data/simple3D.*','')
myModule.copy_folder('../data/color.*','')
myModule.copy_folder('../data/color3.*','')
myModule.copy_folder('../data/textured3D2.*','')
myModule.copy_folder('../data/textured3D.*','')
myModule.copy_folder('../data/texturedDF.*','')
myModule.copy_folder('../data/fontDistanceField/*','fontDistanceField')
2014-05-07 23:30:15 +02:00
myModule.copy_folder('../data/translate/*','translate/ewol/')
2013-04-21 22:29:27 +02:00
# name of the dependency
myModule.add_module_depend(['etk', 'freetype', 'exml', 'ejson', 'egami', 'edtaa3', 'date'])
2013-04-21 22:29:27 +02:00
2013-12-23 22:38:46 +01:00
myModule.add_export_path(tools.get_current_path(__file__))
2013-12-23 22:38:46 +01:00
tagFile = tools.get_current_path(__file__) + "/tag"
ewolVersionID = tools.file_read_data(tagFile)
myModule.compile_flags_CC([
2013-11-28 22:06:53 +01:00
"-DEWOL_VERSION=\"\\\""+ewolVersionID+"\\\"\""
])
if target.name=="Linux":
2013-12-23 22:38:46 +01:00
myModule.add_export_flag_LD('-lGL')
#`pkg-config --cflags directfb` `pkg-config --libs directfb`
#ifeq ("$(CONFIG___EWOL_LINUX_GUI_MODE_X11__)","y")
2013-12-23 22:38:46 +01:00
myModule.add_export_flag_LD('-lX11')
#endif
#ifeq ("$(CONFIG___EWOL_LINUX_GUI_MODE_DIRECT_FB__)","y")
2013-12-23 22:38:46 +01:00
#myModule.add_export_flag_LD(['-L/usr/local/lib', '-ldirectfb', '-lfusion', '-ldirect'])
#endif
#http://en.wikibooks.org/wiki/OpenGL_Programming/Modern_OpenGL_Introduction
# needed package on linux : libgl1-mesa-dev libglew1.5-dev
#ifeq ("$(CONFIG_BUILD_PORTAUDIO)","y")
2013-12-23 22:38:46 +01:00
#myModule.add_src_file('ewol/renderer/audio/interfacePortAudio.cpp')
#endif
elif target.name=="Android":
2013-12-23 22:38:46 +01:00
myModule.add_export_flag_LD("-lGLESv2")
2013-12-23 22:38:46 +01:00
myModule.add_export_flag_LD("-ldl")
myModule.add_export_flag_LD("-llog")
myModule.add_export_flag_LD("-landroid")
java_tmp_dir = tools.get_current_path(__file__) + "/../../ewol/sources/android/src/"
cpp_tmp_dir = tools.get_current_path(__file__) + "/ewol/renderer/Android/"
java_tmp_src = java_tmp_dir + "org/ewol/EwolConstants"
2013-12-23 22:38:46 +01:00
lutinMultiprocess.run_command("javac " + java_tmp_src + ".java")
lutinMultiprocess.run_command("cd " + java_tmp_dir + " && javah org.ewol.EwolConstants")
tools.copy_file(java_tmp_dir + "org_ewol_EwolConstants.h", cpp_tmp_dir + "org_ewol_EwolConstants.h", True)
tools.remove_file(java_tmp_src + ".class")
elif target.name=="Windows":
2013-12-23 22:38:46 +01:00
myModule.add_module_depend("glew")
2013-04-25 00:57:47 +02:00
elif target.name=="MacOs":
2013-12-23 22:38:46 +01:00
myModule.add_export_flag_LD([
2013-04-25 00:57:47 +02:00
"-framework Cocoa",
"-framework OpenGL",
"-framework QuartzCore",
"-framework AppKit"])
2014-04-17 01:25:28 +02:00
elif target.name=="IOs":
myModule.add_export_flag_LD([
"-framework OpenGLES",
"-framework CoreGraphics",
"-framework UIKit",
"-framework GLKit",
"-framework Foundation",
"-framework QuartzCore"])
2013-04-21 22:29:27 +02:00
# add the currrent module at the
return myModule