[DEV] add monk documentation
This commit is contained in:
parent
91198bd195
commit
c1ab11e532
@ -46,14 +46,14 @@ multiplicity :
|
||||
{x,y} ==> {x, y}
|
||||
*/
|
||||
|
||||
typedef struct {
|
||||
struct convertionTable {
|
||||
bool haveBackSlash;
|
||||
char inputValue;
|
||||
char newValue;
|
||||
enum etk::regExpPrivateSection specialChar;
|
||||
}convertionTable_ts;
|
||||
};
|
||||
|
||||
extern const convertionTable_ts constConvertionTable[];
|
||||
extern const struct convertionTable constConvertionTable[];
|
||||
extern const int64_t constConvertionTableSize;
|
||||
|
||||
void displayElem(const std::vector<char32_t>& _data, int64_t _start=0, int64_t _stop=0x7FFFFFFF);
|
||||
|
@ -5,11 +5,6 @@ import lutinTools
|
||||
def Create(target):
|
||||
# module name is 'edn' and type binary.
|
||||
myModule = lutinModule.module(__file__, 'etk', 'LIBRARY')
|
||||
# enable doculentation :
|
||||
myModule.doc_enable()
|
||||
myModule.documentation.set_website("http://HeeroYui.github.io/etk/")
|
||||
myModule.documentation.set_path(lutinTools.GetCurrentPath(__file__) + "/etk/")
|
||||
myModule.documentation.set_external_link(['linearmath','minizip'])
|
||||
# add extra compilation flags :
|
||||
myModule.add_extra_compile_flags()
|
||||
# add the file to compile:
|
||||
|
15
monk_etk.py
Normal file
15
monk_etk.py
Normal file
@ -0,0 +1,15 @@
|
||||
#!/usr/bin/python
|
||||
import monkModule as module
|
||||
import monkTools as tools
|
||||
|
||||
def create():
|
||||
# module name is 'edn' and type binary.
|
||||
myModule = module.Module(__file__, 'etk', 'LIBRARY')
|
||||
# enable doculentation :
|
||||
myModule.set_website("http://heeroyui.github.io/etk/")
|
||||
myModule.set_path(tools.get_current_path(__file__) + "/etk/")
|
||||
# add the currrent module at the
|
||||
return myModule
|
||||
|
||||
def get_desc():
|
||||
return ""
|
Loading…
x
Reference in New Issue
Block a user