[trunk] activate LargeFileSupport in CMake

This commit is contained in:
Julien Malik
2011-11-28 15:32:22 +00:00
parent 27ba604ad7
commit 2eba4fb96b
7 changed files with 218 additions and 1 deletions

11
CMake/TestWindowsFSeek.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
int main()
{
__int64 off=0;
_fseeki64(NULL, off, SEEK_SET);
return 0;
}