Skip to content

Commit

Permalink
add to installer and file type support
Browse files Browse the repository at this point in the history
  • Loading branch information
shun2wang authored Aug 24, 2024
1 parent 291ac41 commit 3bf0660
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 14 deletions.
3 changes: 0 additions & 3 deletions Desktop/data/importers/excelimporter.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ class ExcelImporter : public Importer
ExcelImporter();
virtual ~ExcelImporter() {}


bool importerDeliversLabels() const override { return false; }

protected:
ImportDataSet* loadFile(const std::string &locator, std::function<void(int)> progressCallback) override;

Expand Down
16 changes: 8 additions & 8 deletions Engine/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,16 @@ if(WINDOWS)
POST_BUILD DEPENDS ${CMAKE_BINARY_DIR}/R-Interface/libR-Interface.dll
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBGCC_S_SEH_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBSTDCPP_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_MSYS_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBSTDCPP_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_MSYS_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBWINPTHREAD_DLL}
${CMAKE_BINARY_DIR}
#COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBJSONCPP_DLL}
# ${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBREADSTAT_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBREADSTAT_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBFREEXL_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_ZLIB_DLL}
${CMAKE_BINARY_DIR}
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${RTOOLS_LIBICONV_DLL}
Expand Down
7 changes: 4 additions & 3 deletions Tools/CMake/Install.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -384,10 +384,11 @@ if(WIN32)
install(
FILES ${RTOOLS_LIBGCC_S_SEH_DLL}
${RTOOLS_LIBSTDCPP_DLL}
${RTOOLS_MSYS_DLL}
${RTOOLS_MSYS_DLL}
${RTOOLS_LIBWINPTHREAD_DLL}
#${RTOOLS_LIBJSONCPP_DLL}
${RTOOLS_LIBREADSTAT_DLL}
#${RTOOLS_LIBJSONCPP_DLL}
${RTOOLS_LIBREADSTAT_DLL}
${RTOOLS_LIBFREEXL_DLL}
${RTOOLS_ZLIB_DLL}
${RTOOLS_LIBICONV_DLL}
${_LIB_R_INTERFACE_DLL}
Expand Down
2 changes: 2 additions & 0 deletions Tools/windows/msix/AppxManifest-nightly.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
<uap:FileType>.csv</uap:FileType>
<uap:FileType>.sav</uap:FileType>
<uap:FileType>.ods</uap:FileType>
<uap:FileType>.xls</uap:FileType>
<uap:FileType>.xlsx</uap:FileType>
<uap:FileType>.zsav</uap:FileType>
<uap:FileType>.xpt</uap:FileType>
<uap:FileType>.por</uap:FileType>
Expand Down
2 changes: 2 additions & 0 deletions Tools/windows/msix/AppxManifest-sideload.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
<uap:FileType>.csv</uap:FileType>
<uap:FileType>.sav</uap:FileType>
<uap:FileType>.ods</uap:FileType>
<uap:FileType>.xls</uap:FileType>
<uap:FileType>.xlsx</uap:FileType>
<uap:FileType>.zsav</uap:FileType>
<uap:FileType>.xpt</uap:FileType>
<uap:FileType>.por</uap:FileType>
Expand Down
2 changes: 2 additions & 0 deletions Tools/windows/msix/AppxManifest-store-beta.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
<uap:FileType>.csv</uap:FileType>
<uap:FileType>.sav</uap:FileType>
<uap:FileType>.ods</uap:FileType>
<uap:FileType>.xls</uap:FileType>
<uap:FileType>.xlsx</uap:FileType>
<uap:FileType>.zsav</uap:FileType>
<uap:FileType>.xpt</uap:FileType>
<uap:FileType>.por</uap:FileType>
Expand Down
2 changes: 2 additions & 0 deletions Tools/windows/msix/AppxManifest-store.xml.in
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@
<uap:FileType>.csv</uap:FileType>
<uap:FileType>.sav</uap:FileType>
<uap:FileType>.ods</uap:FileType>
<uap:FileType>.xls</uap:FileType>
<uap:FileType>.xlsx</uap:FileType>
<uap:FileType>.zsav</uap:FileType>
<uap:FileType>.xpt</uap:FileType>
<uap:FileType>.por</uap:FileType>
Expand Down

0 comments on commit 3bf0660

Please sign in to comment.