Updated .gitignore again

This commit is contained in:
WolverinDEV 2019-07-03 18:10:25 +02:00
parent 08a34381be
commit 52e4f002bb
2 changed files with 62 additions and 59 deletions

120
.gitignore vendored
View File

@ -1,58 +1,62 @@
# suppress compiler/linker output # suppress compiler/linker output
*.[oa] *.[oa]
*.l[oa] *.l[oa]
*.obj *.obj
*.gcda *.gcda
*.gcno *.gcno
*.gcov *.gcov
*.lib *.lib
Debug/ Debug/
Release/ Release/
.libs/ .libs/
.coveralls.yml .coveralls.yml
coverage*/ coverage*/
coverage.info coverage.info
# suppress output of build process and *nix/windows test executables # suppress output of build process and *nix/windows test executables
ltmtest ltmtest
ltmtest.exe ltmtest.exe
test test
test.exe test.exe
mtest mtest
mtest.exe mtest.exe
# ignore eclipse project files # ignore eclipse project files
.cproject .cproject
.project .project
# special MS Visual Studio section # special MS Visual Studio section
# ignore non-compressed browse file (holds information for ClassView, IntelliSense and WizardBar) # ignore non-compressed browse file (holds information for ClassView, IntelliSense and WizardBar)
*.ncb *.ncb
# ignore user specific settings # ignore user specific settings
*.user *.user
*.suo *.suo
# ignore stuff generated by "make manual" and "make poster" # ignore stuff generated by "make manual" and "make poster"
*.aux *.aux
*.dvi *.dvi
*.idx *.idx
*.lof *.lof
*.log *.log
*.out *.out
*.toc *.toc
*.ilg *.ilg
*.ind *.ind
*.pdf *.pdf
*.out *.out
tommath.tex tommath.tex
libtommath.pc libtommath.pc
# ignore files generated by testme.sh # ignore files generated by testme.sh
gcc_errors_*.txt gcc_errors_*.txt
test_*.txt test_*.txt
*.bak *.bak
*.orig *.orig
*.asc *.asc
*.tar.xz *.tar.xz
*.zip *.zip
.idea/
cmake-build-*/
out/

View File

@ -1,7 +1,6 @@
cmake_minimum_required(VERSION 3.6) cmake_minimum_required(VERSION 3.6)
project(libtommath) project(libtommath)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -shared")
set(CMAKE_INCLUDE_CURRENT_DIR ON) set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(SOURCE_FILES set(SOURCE_FILES