Convert the "startup-wizard" EPlugin to an EExtension, and fix up the importing UI a bit (but it still needs a lot more love). Importing progress is now shown directly in the GtkAssistant window. Define a new EConfigItem type (E_CONFIG_PAGE_PROGRESS) for creating progress pages in a GtkAssistant. Also, change EMAccountEditor semantics slightly: you now have to call e_config_create_window() manually after creating a new EMAccountEditor instance. This allows extra EConfigItems (specifications for the window content) to be added manually before the window is created.
35 lines
501 B
Makefile
35 lines
501 B
Makefile
if ENABLE_MONO
|
|
MONO_DIR = plugin-mono
|
|
endif
|
|
|
|
if ENABLE_PYTHON
|
|
PYTHON_DIR = plugin-python
|
|
endif
|
|
|
|
if ENABLE_NETWORK_MANAGER
|
|
NETWORK_MANAGER_DIR = network-manager
|
|
endif
|
|
|
|
if ENABLE_CONNMAN
|
|
CONNMAN_DIR = connman
|
|
endif
|
|
|
|
if ENABLE_WINDOWS_SENS
|
|
WINDOWS_SENS_DIR = windows-sens
|
|
endif
|
|
|
|
SUBDIRS = \
|
|
addressbook \
|
|
calendar \
|
|
mail \
|
|
mailto-handler \
|
|
plugin-lib \
|
|
startup-wizard \
|
|
$(MONO_DIR) \
|
|
$(PYTHON_DIR) \
|
|
$(NETWORK_MANAGER_DIR) \
|
|
$(WINDOWS_SENS_DIR) \
|
|
$(CONNMAN_DIR)
|
|
|
|
-include $(top_srcdir)/git.mk
|