From 809973acb3031caa2e4337e879f2a99ff121e28f Mon Sep 17 00:00:00 2001 From: Adrian Conlon Date: Sat, 6 Jan 2018 22:35:17 +0000 Subject: [PATCH] Couple more linux changes for the 6502... Signed-off-by: Adrian Conlon --- M6502/test/Makefile | 2 ++ M6502/test/stdafx.h | 2 ++ 2 files changed, 4 insertions(+) diff --git a/M6502/test/Makefile b/M6502/test/Makefile index 3d94958..4804af0 100644 --- a/M6502/test/Makefile +++ b/M6502/test/Makefile @@ -1,5 +1,7 @@ EXE = test_m6502 +CXXFLAGS = -I ../inc -I ../../inc + CXXFILES = Board.cpp Configuration.cpp test.cpp LDFLAGS = -L ../src -L ../../src -lm6502 -leightbit diff --git a/M6502/test/stdafx.h b/M6502/test/stdafx.h index 21e169a..756ec5f 100644 --- a/M6502/test/stdafx.h +++ b/M6502/test/stdafx.h @@ -1,4 +1,6 @@ +#ifdef _MSC_VER #pragma once +#endif #include