[DEV] correct build with new methode of the edn soft ==> no dependence and no clean

This commit is contained in:
Edouard DUPIN 2013-04-18 22:51:51 +02:00
parent 9e4b987ffa
commit c288f87914
6 changed files with 11 additions and 11 deletions

2
build

@ -1 +1 @@
Subproject commit 9e4b2ff89557761d2b39dd4781c69fe226131309
Subproject commit e5235b45dfcfd11e28626b6cfe93360e3eac4541

2
external/agg vendored

@ -1 +1 @@
Subproject commit 432d7f7422d43b747f912c6e94528bfdfbbcc7aa
Subproject commit 60870aaed544ddb8a33ba4eaa9a388d52a959cdd

2
external/etk vendored

@ -1 +1 @@
Subproject commit 105029620e408192a514b10278d34c05396350c5
Subproject commit 242c98e12b23335a78bf6caaf22fa70d7f6a119f

2
external/freetype vendored

@ -1 +1 @@
Subproject commit 17237771d525fc3c8a79c0f6c719ecc41c1d259f
Subproject commit c04d149f7ff4e07f8b30a868e8dc634eaa3f2de2

View File

@ -156,7 +156,7 @@ myModule.AddExportflag_LD('-lX11')
myModule.CompileFlags_CC([
'-Wno-write-strings',
'-DEWOL_VERSION_TAG_NAME="\"TAG-build\""',
'-DEWOL_VERSION_TAG_NAME="\\"TAG-build\\""',
'-Wall'])
#ifeq ("$(CONFIG_BUILD_PORTAUDIO)","y")

View File

@ -144,13 +144,13 @@ namespace ewol {
*/
virtual vec2 GetOrigin(void);
protected:
ewol::Dimension::Dimension m_userMinSize; //!< user define the minimum size of the widget
ewol::Dimension m_userMinSize; //!< user define the minimum size of the widget
public:
/**
* @brief User set the minimum size he want to set the display
* @param[in] size Set minimum size (none : 0)
*/
void SetMinSize(const ewol::Dimension::Dimension& size);
void SetMinSize(const ewol::Dimension& size);
/**
* @brief User set No minimum size.
*/
@ -159,7 +159,7 @@ namespace ewol {
* @brief Get the current calculated min size
* @return the size requested
*/
const ewol::Dimension::Dimension& GetMinSize(void) { return m_userMinSize; };
const ewol::Dimension& GetMinSize(void) { return m_userMinSize; };
/**
* @brief Check if the current min size is compatible with the user minimum size
* If it is not the user minimum size will overWrite the minimum size set.
@ -167,13 +167,13 @@ namespace ewol {
*/
virtual void CheckMinSize(void);
protected:
ewol::Dimension::Dimension m_userMaxSize; //!< user define the maximum size of the widget
ewol::Dimension m_userMaxSize; //!< user define the maximum size of the widget
public:
/**
* @brief User set the maximum size he want to set the display
* @param[in] size The new maximum size requested (vec2(0,0) to unset)
*/
void SetMaxSize(const ewol::Dimension::Dimension& size);
void SetMaxSize(const ewol::Dimension& size);
/**
* @brief User set No maximum size.
*/
@ -182,7 +182,7 @@ namespace ewol {
* @brief Get the current maximum size
* @return the size requested
*/
const ewol::Dimension::Dimension& GetMaxSize(void) { return m_userMaxSize; };
const ewol::Dimension& GetMaxSize(void) { return m_userMaxSize; };
/**
* @brief Check if the current max size is compatible with the user maximum size
* If it is not the user maximum size will overWrite the maximum size set.