Skip to content

Commit eceb00d

Browse files
committed
Add CMakeLists
1 parent fdd76fe commit eceb00d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

CMakeLists.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
cmake_minimum_required(VERSION 3.3)
2+
project(qemu_dev)
3+
4+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
5+
6+
file(GLOB_RECURSE src "*.c" "*.h")
7+
8+
set(SOURCES ${src})
9+
add_library(qemu_dev ${SOURCES})
10+
target_include_directories(qemu_dev PUBLIC "include" "target/arm" "")

0 commit comments

Comments
 (0)