We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fdd76fe commit eceb00dCopy full SHA for eceb00d
CMakeLists.txt
@@ -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