
it appears a one-character typo in the cmake_minimum_required line prevents it from compiling under CMake 4.0. in order to fix that, I had to take this thing out of submodules... it is recommended to do this after you pull; git submodule deinit extern/libsndfile
20 lines
503 B
Plaintext
20 lines
503 B
Plaintext
# Set the default behavior, in case people don't have core.autocrlf set.
|
|
* text=auto
|
|
|
|
# Declare files that will always have CRLF line endings on checkout.
|
|
*.ac text eol=lf
|
|
*.am text eol=lf
|
|
*.m4 text eol=lf
|
|
*.pc text eol=lf
|
|
*.spec text eol=lf
|
|
*.sh text eol=lf
|
|
|
|
# Explicitly declare text files you want to always be normalized and converted
|
|
# to native line endings on checkout.
|
|
*.c text
|
|
*.h text
|
|
|
|
# exclude repository configurations from 'git archive'
|
|
.git* export-ignore
|
|
.travis.yml export-ignore
|