Description
Hello, i'd appreaciate a bit of help with using the liblogicalaccess on Windows. I'm coming from c# so i'm a bit of a c++ newbie.
I ran
git clone https://github.com/liblogicalaccess/cppkcs11; conan export .
git clone https://github.com/islog/liblogicalaccess.git; cd liblogicalaccess;
mkdir build ; cd build ; conan install .. ; conan create ..
Then i used the VS2022 conan extension, with the default conanfile.py as generated by the extension and with the following conandata.yml:
requirements:
- boost/1.83.0
- logicalaccess/3.3.1
The first build it built things, then the second time it ran, but gave me the error "logicalaccess.dll" missing, the includes were handled ok tho.
Then i manually added the dll with a post-build event (xcopy /Y /D ... "$(TargetDir)") for each missing dll.
Here is the output of one of the code samples you provided:
I have a smartcard reader that registers 5 PC/SC devices in device manager and i think this library would be very helpful for me to test the device.
Please help, and thanks