Fix my dll making, also other cmake variable use

This commit is contained in:
Chris Marsh
2017-08-01 13:32:56 -07:00
parent 67a81b82cd
commit 2311a26eb0
2 changed files with 27 additions and 10 deletions

6
src/dllmain.cpp Normal file
View File

@ -0,0 +1,6 @@
#include <windows.h>
BOOL WINAPI DllMain(HMODULE, DWORD, LPVOID)
{
return TRUE;
}