forked from hpcc-systems/HPCC-Platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request hpcc-systems#17349 from kenrowland/HPCC-29381
HPCC-29381 Improve XSD generation for ESP services
- Loading branch information
Showing
20 changed files
with
894 additions
and
183 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
################################################################################ | ||
# HPCC SYSTEMS software Copyright (C) 2013 HPCC Systems®. | ||
# | ||
# Licensed 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 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
################################################################################ | ||
# Component: esdllib | ||
|
||
project( esdllib ) | ||
|
||
include_directories ( | ||
${HPCC_SOURCE_DIR}/system/xmllib | ||
${HPCC_SOURCE_DIR}/esp/bindings | ||
${HPCC_SOURCE_DIR}/esp/bindings/http/client | ||
${HPCC_SOURCE_DIR}/esp/bindings/SOAP/xpp | ||
${HPCC_SOURCE_DIR}/esp/platform | ||
${HPCC_SOURCE_DIR}/system/include | ||
${HPCC_SOURCE_DIR}/esp/services/common | ||
${HPCC_SOURCE_DIR}/system/jlib | ||
${HPCC_SOURCE_DIR}/system/security/shared | ||
${HPCC_SOURCE_DIR}/rtl/eclrtl | ||
${HPCC_SOURCE_DIR}/rtl/include #IXMLWriter | ||
${HPCC_SOURCE_DIR}/common/dllserver #loading plugins | ||
${HPCC_SOURCE_DIR}/system/masking/include | ||
) | ||
|
||
ADD_DEFINITIONS ( -D_USRDLL -DESDLSCRIPTLIB_EXPORTS ) | ||
|
||
set ( SRCS | ||
esdl_script.cpp | ||
${HPCC_SOURCE_DIR}/esp/bindings/SOAP/xpp/fxpp/FragmentedXmlPullParser.cpp; | ||
${HPCC_SOURCE_DIR}/esp/bindings/SOAP/xpp/xpp/xpputils.cpp | ||
) | ||
|
||
if (USE_LIBXSLT) | ||
list (APPEND SRCS | ||
esdl_xpath_extensions_libxml.cpp | ||
) | ||
else() | ||
list (APPEND SRCS | ||
esdl_xpath_extensions_unsupported.cpp | ||
) | ||
endif() | ||
|
||
HPCC_ADD_LIBRARY( esdlscriptlib SHARED ${SRCS} | ||
${HEADERS} | ||
) | ||
|
||
install ( TARGETS esdlscriptlib RUNTIME DESTINATION bin LIBRARY DESTINATION lib ) | ||
|
||
add_dependencies ( esdlscriptlib jlib espscm) | ||
|
||
target_link_libraries ( esdlscriptlib | ||
jlib | ||
dllserver | ||
esphttp | ||
) | ||
|
||
IF (USE_LIBXSLT) | ||
include_directories ( | ||
${LIBXML2_INCLUDE_DIR} | ||
) | ||
ENDIF() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.