SQlite compilation error

Hello guys

I’m trying to implement SQLite in my app (https://github.com/bolav/fuse-sqlite) but it cannot compile correctly. The project gives this error when trying to build:

C:\Users\User\Desktop\example\test_sqlite\SQLiteImpl.CIL.uxl(3,11): E0000: Failed to load assembly ‘C:\Users\User\Desktop\example\test_sqlite\SQLiteImpl.CIL.dll’: Unable to find file. (Eccezione da HRESULT: 0x80070002) C:\Users\User\Desktop\example\test_sqlite\SQLiteImpl.CIL.uno(8,30): E0000: ‘SQLiteImpl.OpenImpl(string)’ is marked as ‘extern’, but target does not provide an implementation C:\Users\User\Desktop\example\test_sqlite\SQLiteImpl.CIL.uno(11,28): E0000: ‘SQLiteImpl.ExecImpl(string,string)’ is marked as ‘extern’, but target does not provide an implementation C:\Users\User\Desktop\example\test_sqlite\SQLiteImpl.CIL.uno(14,28): E0000: ‘SQLiteImpl.CloseImpl(string)’ is marked as ‘extern’, but target does not provide an implementation C:\Users\User\Desktop\example\test_sqlite\SQLiteImpl.CIL.uno(17,55): E0000: ‘SQLiteImpl.QueryImpl(string,string)’ is marked as ‘extern’, but target does not provide an implementation

It seems that the dll file is not found…but where/how can I get it? Thank you Max