mirror of
https://github.com/GerbilSoft/rvthtool.git
synced 2025-06-18 19:45:35 -04:00

NOTE: Nettle doesn't support being compiled with MSVC. This build was compiled using i686-w64-mingw32-gcc 7.3.0 on Gentoo Linux, and the import library was manually created using MSVC 2010. NOTE 2: Nettle needs GMP's mpz_powm_sec() function, which isn't included as part of mpir. Nettle has its own "mini-GMP", which also has the functions we were using to manually decrypt RSA signatures, so we're switching from MPIR to Nettle mini-GMP on Windows. The Linux build still uses the system GMP. TODO: Win64 precompiled build.
23 lines
265 B
Plaintext
23 lines
265 B
Plaintext
# Filetypes.
|
|
*~
|
|
*.o
|
|
*.a
|
|
*.so
|
|
.directory
|
|
*.kate-swp
|
|
|
|
# Build directories.
|
|
/build*
|
|
|
|
# KDevelop project files.
|
|
*.kdev4
|
|
|
|
# CMake temproary files.
|
|
CMakeCache.txt
|
|
CMakeFiles/
|
|
cmake_install.cmake
|
|
git_version.h
|
|
|
|
# Allow *.a files in the win32/ directory.
|
|
!/win32/*/lib/*.a
|