[svn-r27522] CMake files match those of the trunk but still need to be updated with changes in this branch.

Tested on: NONE (CMake is still broken in this branch)
This commit is contained in:
Dana Robinson
2015-08-19 05:54:48 -05:00
parent eb9fda6709
commit 291bf20529
78 changed files with 7456 additions and 1277 deletions

View File

@@ -0,0 +1,15 @@
#if defined (TRY_SYS_TIME_H)
#include <sys/time.h>
/* #include <time.h> */
#endif
#if defined (TRY_TIME_H)
#include <time.h>
#endif
int main(int argc, char **argv) {
struct timeval t1;
gettimeofday(&t1, 0x00);
return 0;
}