|
Revision 41, 407 bytes
(checked in by vossg, 2 years ago)
|
added : Collada importer first version
|
- Property svn:eol-style set to
native
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
INCLUDE_COLLADA := @ac_gdz_collada_incdir_e25@ |
|---|
| 3 |
LINK_COLLADA := @ac_gdz_collada_libdir_e25@ |
|---|
| 4 |
LIB_COLLADA := @ac_gdz_collada_lib_e25@ |
|---|
| 5 |
|
|---|
| 6 |
ifneq ($(INCLUDE_COLLADA),) |
|---|
| 7 |
INCL_$(OS_BASE) += $(foreach dir,$(INCLUDE_COLLADA),$(INC_OPTION)$(dir)) |
|---|
| 8 |
endif |
|---|
| 9 |
|
|---|
| 10 |
ifneq ($(LINK_COLLADA),) |
|---|
| 11 |
LIBPATHS_COLLADA := $(LIBPATH_OPTION)$(LINK_COLLADA) |
|---|
| 12 |
endif |
|---|
| 13 |
|
|---|
| 14 |
ifneq ($(LIB_COLLADA),) |
|---|
| 15 |
LIB_FILE_COLLADA := $(LIB_COLLADA) |
|---|
| 16 |
endif |
|---|