some small changes

This commit is contained in:
Tyler Wilding
2020-08-26 21:08:18 -04:00
parent e6e96400c8
commit 406549bf6a
5 changed files with 10 additions and 3 deletions
+8 -1
View File
@@ -71,4 +71,11 @@ add_executable(gk ${RUNTIME_SOURCE})
# can be used to test other things.
add_library(runtime ${RUNTIME_SOURCE})
target_link_libraries(gk pthread)
IF (WIN32)
# set stuff for windows
target_link_libraries(gk)
ELSE()
# set stuff for other systems
target_link_libraries(gk pthread)
ENDIF()
+1 -1
View File
@@ -4,7 +4,7 @@
*/
#include <io.h>
#include <third-party\mman.h>
#include <third-party/mman/mman.h>
#include <cstring>
#include <Windows.h>
+1 -1
View File
@@ -1,4 +1,4 @@
#include <third-party/mman.h>
#include <third-party/mman/mman.h>
#include <cstdio>
#include "CodeTester.h"
#include "Instruction.h"
View File
View File