Added basic GUI, debugger and register view
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c672846..e0b1243 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,6 +4,8 @@
 
 option(GEN_INSTRUCTIONS_HEADER ON)
 
+include_directories(nuklear)
+
 if (${GEN_INSTRUCTIONS_HEADER})
 	add_custom_command(
 		OUTPUT instructions.h
@@ -12,5 +14,5 @@
 		WORKING_DIRECTORY ${CMAKE_SOURCE_DIR})
 endif()
 
-add_executable(6502 main.c cpu.c cpu.h dbg.c dbg.h instructions.h)
-target_link_libraries(6502 readline)
\ No newline at end of file
+add_executable(6502 main.c cpu.c cpu.h dbg.c dbg.h instructions.h gui.h gui.c)
+target_link_libraries(6502 readline SDL2 GL GLU GLEW m)