scp2: move WNT executables to AutoInstall
Change-Id: I3e541053faf956dc0cd2a3f068cd93b73fcaab6d
This commit is contained in:
parent
58735f0608
commit
f049b83cc2
6 changed files with 17 additions and 38 deletions
|
@ -141,8 +141,17 @@ $(eval $(call gb_Helper_register_executables_for_install,OOO,ooo, \
|
|||
$(if $(filter unx-TRUE,$(GUIBASE)-$(ENABLE_TDE)),tdefilepicker) \
|
||||
$(if $(filter unx,$(GUIBASE)),uri-encode) \
|
||||
ui-previewer \
|
||||
$(if $(filter WNT,$(OS)), \
|
||||
senddoc \
|
||||
) \
|
||||
))
|
||||
|
||||
ifeq ($(OS),WNT)
|
||||
$(eval $(call gb_Helper_register_executables_for_install,OOO,quickstart, \
|
||||
quickstart \
|
||||
))
|
||||
endif
|
||||
|
||||
ifneq ($(ENABLE_CRASHDUMP),)
|
||||
$(eval $(call gb_Helper_register_executables_for_install,OOO,crashrep, \
|
||||
crashrep \
|
||||
|
@ -178,10 +187,6 @@ $(eval $(call gb_Helper_register_executables,OOO, \
|
|||
vcldemo \
|
||||
tiledrendering \
|
||||
$(if $(and $(ENABLE_GTK), $(filter LINUX,$(OS))), gtktiledviewer) \
|
||||
$(if $(filter WNT,$(OS)), \
|
||||
quickstart \
|
||||
senddoc \
|
||||
) \
|
||||
))
|
||||
|
||||
$(eval $(call gb_Helper_register_executables_for_install,UREBIN,ure,\
|
||||
|
|
|
@ -35,6 +35,7 @@ $(eval $(call gb_AutoInstall_add_module,ooobinarytable,LIBO_LIB_FILE_BINARYTABLE
|
|||
$(eval $(call gb_AutoInstall_add_module,python,LIBO_LIB_FILE,LIBO_EXECUTABLE))
|
||||
$(eval $(call gb_AutoInstall_add_module,postgresqlsdbc,LIBO_LIB_FILE))
|
||||
$(eval $(call gb_AutoInstall_add_module,pdfimport,LIBO_LIB_FILE,LIBO_EXECUTABLE))
|
||||
$(eval $(call gb_AutoInstall_add_module,quickstart,,LIBO_EXECUTABLE))
|
||||
$(eval $(call gb_AutoInstall_add_module,reportbuilder,LIBO_LIB_FILE,,LIBO_JAR_FILE))
|
||||
$(eval $(call gb_AutoInstall_add_module,sdk,,SDK_EXECUTABLE))
|
||||
$(eval $(call gb_AutoInstall_add_module,tde,LIBO_LIB_FILE))
|
||||
|
|
|
@ -9,6 +9,10 @@
|
|||
|
||||
$(eval $(call gb_InstallModule_InstallModule,scp2/quickstart))
|
||||
|
||||
$(eval $(call gb_installmodule_use_auto_install_libs,scp2/quickstart,\
|
||||
quickstart \
|
||||
))
|
||||
|
||||
$(eval $(call gb_InstallModule_add_scpfiles,scp2/quickstart,\
|
||||
scp2/source/quickstart/file_quickstart \
|
||||
scp2/source/quickstart/registryitem_quickstart \
|
||||
|
|
|
@ -165,13 +165,6 @@ File gid_File_Bin_Senddoc
|
|||
Name = "shell_senddoc.filelist";
|
||||
Styles = (FILELIST, PACKED);
|
||||
End
|
||||
#elif defined WNT
|
||||
File gid_File_Bin_Senddoc
|
||||
BIN_FILE_BODY;
|
||||
Dir = gid_Brand_Dir_Program;
|
||||
Name = "senddoc.exe";
|
||||
Styles = (PACKED);
|
||||
End
|
||||
#endif
|
||||
|
||||
File gid_File_framework_dtd
|
||||
|
|
|
@ -1,26 +0,0 @@
|
|||
/*
|
||||
* This file is part of the LibreOffice project.
|
||||
*
|
||||
* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
*
|
||||
* This file incorporates work covered by the following license notice:
|
||||
*
|
||||
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||
* contributor license agreements. See the NOTICE file distributed
|
||||
* with this work for additional information regarding copyright
|
||||
* ownership. The ASF licenses this file to you under the Apache
|
||||
* License, Version 2.0 (the "License"); you may not use this file
|
||||
* except in compliance with the License. You may obtain a copy of
|
||||
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
||||
*/
|
||||
|
||||
#include "macros.inc"
|
||||
|
||||
File gid_File_Exe_Quickstart
|
||||
BIN_FILE_BODY;
|
||||
Styles = (PACKED);
|
||||
Dir = gid_Brand_Dir_Program;
|
||||
Name = "quickstart.exe";
|
||||
End
|
|
@ -18,10 +18,12 @@
|
|||
|
||||
#include "macros.inc"
|
||||
|
||||
#include "AutoInstall/quickstart"
|
||||
|
||||
Module gid_Module_Optional_Quickstart
|
||||
MOD_NAME_DESC ( MODULE_OPTIONAL_QUICKSTART );
|
||||
Sortkey = "1400";
|
||||
Default = YES;
|
||||
ParentID = gid_Module_Optional;
|
||||
Files = (gid_File_Exe_Quickstart, gid_File_Tmp_Userinstall_Quickstart_Inf);
|
||||
Files = (auto_quickstart_ALL, gid_File_Tmp_Userinstall_Quickstart_Inf);
|
||||
End
|
||||
|
|
Loading…
Reference in a new issue