You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I copied the cryptopp project into a subdirectory of my own project and add_subdirectory to crypto++ to use it as a dependency using cryptopp-cmake. Probably a somewhat common setup.
When trying to build my project, I got weird errors with missing test_....cxx files when trying to build my project. Turns out, this is because the TestPrograms/**.cxx files were missing from my repository because the crypto++ .gitignore (https://github.com/weidai11/cryptopp/blob/master/.gitignore#L6 ) prevented them from being added.
I assume other people will run into this issue as well and it's somewhat hard to figure out. Is it possible to remove *.cxx from the crypto++ .gitignore?
The text was updated successfully, but these errors were encountered:
See noloader/cryptopp-cmake#66
I copied the cryptopp project into a subdirectory of my own project and
add_subdirectory
to crypto++ to use it as a dependency usingcryptopp-cmake
. Probably a somewhat common setup.When trying to build my project, I got weird errors with missing
test_....cxx
files when trying to build my project. Turns out, this is because theTestPrograms/**.cxx
files were missing from my repository because the crypto++ .gitignore (https://github.com/weidai11/cryptopp/blob/master/.gitignore#L6 ) prevented them from being added.I assume other people will run into this issue as well and it's somewhat hard to figure out. Is it possible to remove
*.cxx
from the crypto++.gitignore
?The text was updated successfully, but these errors were encountered: