Skip to content

Commit

Permalink
WIP start of an docx importer
Browse files Browse the repository at this point in the history
git-svn-id: svn://scribus.net/trunk/Scribus@20592 11d20701-8431-0410-a711-e3c959e3b870
  • Loading branch information
Franz Schmid authored and Franz Schmid committed Nov 27, 2015
1 parent b765004 commit e25bdd2
Show file tree
Hide file tree
Showing 4 changed files with 751 additions and 0 deletions.
1 change: 1 addition & 0 deletions scribus/plugins/gettext/CMakeLists.txt
Expand Up @@ -2,6 +2,7 @@
ADD_SUBDIRECTORY(csvim)
ADD_SUBDIRECTORY(docim)
IF(HAVE_XML)
ADD_SUBDIRECTORY(docxim)
ADD_SUBDIRECTORY(htmlim)
ADD_SUBDIRECTORY(odtim)
ENDIF(HAVE_XML)
Expand Down
22 changes: 22 additions & 0 deletions scribus/plugins/gettext/docxim/CMakeLists.txt
@@ -0,0 +1,22 @@
INCLUDE_DIRECTORIES(
${CMAKE_SOURCE_DIR}
${CMAKE_SOURCE_DIR}/scribus
)

SET(DOCX_IM_PLUGIN_SOURCES
docxim.cpp
)

SET(SCRIBUS_DOCX_IM_PLUGIN "docximplugin")

ADD_LIBRARY(${SCRIBUS_DOCX_IM_PLUGIN} MODULE ${DOCX_IM_PLUGIN_SOURCES})

TARGET_LINK_LIBRARIES(${SCRIBUS_DOCX_IM_PLUGIN} ${PLUGIN_LIBRARIES} ${SCRIBUS_DOCX_LIB})

INSTALL(TARGETS ${SCRIBUS_DOCX_IM_PLUGIN}
LIBRARY
DESTINATION ${PLUGINDIR}gettext
PERMISSIONS ${PLUGIN_PERMISSIONS}
)

# SET_TARGET_PROPERTIES(${SCRIBUS_FONTPREVIEW_PLUGIN} PROPERTIES VERSION "0.0.0")

0 comments on commit e25bdd2

Please sign in to comment.