-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* New line end handling rules * Normalize all the line endings
- Loading branch information
Showing
397 changed files
with
252,824 additions
and
252,713 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,112 @@ | ||
# Handle line endings automatically for files detected as text | ||
# and leave all files detected as binary untouched. | ||
* text=auto | ||
|
||
# | ||
# The above will handle all files NOT found below | ||
# | ||
# These files are text and should be normalized (Convert crlf => lf) | ||
|
||
# Source files | ||
*.c text | ||
*.cc text | ||
*.cxx text | ||
*.cpp text | ||
*.c++ text | ||
*.hpp text | ||
*.h text | ||
*.h++ text | ||
*.hh text | ||
*.lua text | ||
*.pxd text | ||
*.py text | ||
*.py3 text | ||
*.pyw text | ||
*.pyx text | ||
*.pl text | ||
*.pm text | ||
*.sln text eol=crlf | ||
*.csproj text eol=crlf | ||
*.vbproj text eol=crlf | ||
*.vcxproj text eol=crlf | ||
*.vcproj text eol=crlf | ||
*.dbproj text eol=crlf | ||
*.fsproj text eol=crlf | ||
*.lsproj text eol=crlf | ||
*.wixproj text eol=crlf | ||
*.modelproj text eol=crlf | ||
*.sqlproj text eol=crlf | ||
*.wmaproj text eol=crlf | ||
*.xproj text eol=crlf | ||
*.props text eol=crlf | ||
*.filters text eol=crlf | ||
*.vcxitems text eol=crlf | ||
*.sh eol=lf | ||
|
||
# Compiled Object files | ||
*.slo binary | ||
*.lo binary | ||
*.o binary | ||
*.obj binary | ||
|
||
# Precompiled Headers | ||
*.gch binary | ||
*.pch binary | ||
|
||
# Compiled Dynamic libraries | ||
*.so binary | ||
*.dylib binary | ||
*.dll binary | ||
|
||
# Compiled Static libraries | ||
*.lai binary | ||
*.la binary | ||
*.a binary | ||
*.lib binary | ||
|
||
# Executables | ||
*.exe binary | ||
*.out binary | ||
*.app binary | ||
|
||
# Binary files | ||
*.db binary | ||
*.p binary | ||
*.pkl binary | ||
*.pyc binary | ||
*.pyd binary | ||
*.pyo binary | ||
|
||
# Documents | ||
*.doc diff=astextplain | ||
*.DOC diff=astextplain | ||
*.docx diff=astextplain | ||
*.DOCX diff=astextplain | ||
*.dot diff=astextplain | ||
*.DOT diff=astextplain | ||
*.pdf diff=astextplain | ||
*.PDF diff=astextplain | ||
*.rtf diff=astextplain | ||
*.RTF diff=astextplain | ||
*.md text | ||
*.adoc text | ||
*.textile text | ||
*.mustache text | ||
*.csv text | ||
*.tab text | ||
*.tsv text | ||
*.sql text | ||
|
||
# Graphics | ||
*.png binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.gif binary | ||
*.tif binary | ||
*.tiff binary | ||
*.ico binary | ||
# SVG treated as an asset (binary) by default. If you want to treat it as text, | ||
# comment-out the following line and uncomment the line after. | ||
*.svg binary | ||
#*.svg text | ||
*.eps binary |
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 |
---|---|---|
@@ -1,68 +1,68 @@ | ||
# Find Xerces-C | ||
# The following setings are defined | ||
# XERCESC_ROOT_DIR, the root of the include and lib directory | ||
# XERCESC_INCLUDE_DIR, the full path of the include dir (ADVANCED) | ||
# XERCESC_LIBRARIES, the name of the xerces-c library (ADVANCED) | ||
|
||
# Look for a root installation | ||
IF( MSVC ) | ||
SET( XERCES_WINDIR C:/Programs/xerces-vc ) | ||
ELSE( ) | ||
SET( XERCES_WINDIR C:/Programs/xerces ) | ||
ENDIF( ) | ||
|
||
FIND_PATH(XERCESC_ROOT_DIR include/xercesc/parsers/SAXParser.hpp | ||
${XERCES_WINDIR} | ||
"C:/mingw/msys/1.0/local" | ||
"C:/Program Files/CodeSynthesis XSD 3.2" | ||
/usr | ||
/usr/local | ||
"C:/MinGW" | ||
$ENV{CODESYNTH} | ||
DOC "The root of an installed xerces-c installation" | ||
) | ||
|
||
# try to find the header | ||
FIND_PATH(XERCESC_INCLUDE_DIR xercesc/parsers/SAXParser.hpp | ||
${XERCESC_ROOT_DIR}/include | ||
/usr/include | ||
/usr/local/include | ||
) | ||
|
||
# Find the library | ||
FIND_LIBRARY(XERCESC_LIBRARY | ||
NAMES xerces-c xerces-c_3 | ||
PATHS | ||
${XERCESC_ROOT_DIR}/lib | ||
${XERCESC_ROOT_DIR}/lib/vc-9.0 | ||
${XERCESC_ROOT_DIR}/lib64/vc-9.0 | ||
/usr/lib | ||
/usr/local/lib | ||
DOC "The name of the xerces-c library" | ||
) | ||
|
||
IF (XERCESC_ROOT_DIR) | ||
IF (XERCESC_INCLUDE_DIR AND XERCESC_LIBRARY) | ||
SET (XERCESC_FOUND TRUE) | ||
SET (XERCESC_LIBRARIES "${XERCESC_LIBRARY}") | ||
# FIXME: There should be a better way of handling this? | ||
# FIXME: How can we test to see if the lib dir isn't | ||
# FIXME: one of the default dirs? | ||
LINK_DIRECTORIES(${XERCESC_ROOT_DIR}/lib) | ||
ENDIF (XERCESC_INCLUDE_DIR AND XERCESC_LIBRARY) | ||
ENDIF (XERCESC_ROOT_DIR) | ||
|
||
IF (XERCESC_FOUND) | ||
IF (NOT XERCESC_FIND_QUIETLY) | ||
MESSAGE (STATUS " found xerces-c: ${XERCESC_LIBRARY}") | ||
ENDIF (NOT XERCESC_FIND_QUIETLY) | ||
ELSE (XERCESC_FOUND) | ||
IF (XERCESC_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find Xerces-C") | ||
ENDIF (XERCESC_FIND_REQUIRED) | ||
ENDIF (XERCESC_FOUND) | ||
|
||
MARK_AS_ADVANCED( | ||
XERCESC_INCLUDE_DIR | ||
XERCESC_LIBRARY | ||
# Find Xerces-C | ||
# The following setings are defined | ||
# XERCESC_ROOT_DIR, the root of the include and lib directory | ||
# XERCESC_INCLUDE_DIR, the full path of the include dir (ADVANCED) | ||
# XERCESC_LIBRARIES, the name of the xerces-c library (ADVANCED) | ||
|
||
# Look for a root installation | ||
IF( MSVC ) | ||
SET( XERCES_WINDIR C:/Programs/xerces-vc ) | ||
ELSE( ) | ||
SET( XERCES_WINDIR C:/Programs/xerces ) | ||
ENDIF( ) | ||
|
||
FIND_PATH(XERCESC_ROOT_DIR include/xercesc/parsers/SAXParser.hpp | ||
${XERCES_WINDIR} | ||
"C:/mingw/msys/1.0/local" | ||
"C:/Program Files/CodeSynthesis XSD 3.2" | ||
/usr | ||
/usr/local | ||
"C:/MinGW" | ||
$ENV{CODESYNTH} | ||
DOC "The root of an installed xerces-c installation" | ||
) | ||
|
||
# try to find the header | ||
FIND_PATH(XERCESC_INCLUDE_DIR xercesc/parsers/SAXParser.hpp | ||
${XERCESC_ROOT_DIR}/include | ||
/usr/include | ||
/usr/local/include | ||
) | ||
|
||
# Find the library | ||
FIND_LIBRARY(XERCESC_LIBRARY | ||
NAMES xerces-c xerces-c_3 | ||
PATHS | ||
${XERCESC_ROOT_DIR}/lib | ||
${XERCESC_ROOT_DIR}/lib/vc-9.0 | ||
${XERCESC_ROOT_DIR}/lib64/vc-9.0 | ||
/usr/lib | ||
/usr/local/lib | ||
DOC "The name of the xerces-c library" | ||
) | ||
|
||
IF (XERCESC_ROOT_DIR) | ||
IF (XERCESC_INCLUDE_DIR AND XERCESC_LIBRARY) | ||
SET (XERCESC_FOUND TRUE) | ||
SET (XERCESC_LIBRARIES "${XERCESC_LIBRARY}") | ||
# FIXME: There should be a better way of handling this? | ||
# FIXME: How can we test to see if the lib dir isn't | ||
# FIXME: one of the default dirs? | ||
LINK_DIRECTORIES(${XERCESC_ROOT_DIR}/lib) | ||
ENDIF (XERCESC_INCLUDE_DIR AND XERCESC_LIBRARY) | ||
ENDIF (XERCESC_ROOT_DIR) | ||
|
||
IF (XERCESC_FOUND) | ||
IF (NOT XERCESC_FIND_QUIETLY) | ||
MESSAGE (STATUS " found xerces-c: ${XERCESC_LIBRARY}") | ||
ENDIF (NOT XERCESC_FIND_QUIETLY) | ||
ELSE (XERCESC_FOUND) | ||
IF (XERCESC_FIND_REQUIRED) | ||
MESSAGE(FATAL_ERROR "Could not find Xerces-C") | ||
ENDIF (XERCESC_FIND_REQUIRED) | ||
ENDIF (XERCESC_FOUND) | ||
|
||
MARK_AS_ADVANCED( | ||
XERCESC_INCLUDE_DIR | ||
XERCESC_LIBRARY | ||
) |
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 |
---|---|---|
@@ -1 +1 @@ | ||
IDI_ICON1 ICON DISCARDABLE "icon.ico" | ||
IDI_ICON1 ICON DISCARDABLE "icon.ico" |
Oops, something went wrong.