cmake files

This commit is contained in:
Kelvin Sherlock 2013-02-05 23:58:07 -05:00
parent 93d782c464
commit 42c6b1751e
2 changed files with 6 additions and 0 deletions

View File

@ -6,3 +6,4 @@ project(mpw)
cmake_minimum_required(VERSION 2.6)
add_subdirectory(bin)
add_subdirectory(cpu)

5
cpu/CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
set(CMAKE_INCLUDE_CURRENT_DIR ON)
set(CPU_SRC CpuModule_Disassembler.c)
add_library(CPU_LIB ${CPU_SRC})