1
0
mirror of https://github.com/Yours3lf/rpi-vk-driver.git synced 2024-12-04 16:24:15 +01:00
rpi-vk-driver/QPUassembler/CMakeLists.txt

12 lines
237 B
CMake
Raw Normal View History

2019-04-14 15:43:27 +02:00
cmake_minimum_required(VERSION 2.8)
project(QPUassembler)
file(GLOB asmSrc
"*.h"
"*.c"
)
add_executable(${PROJECT_NAME} ${asmSrc})
target_compile_options(${PROJECT_NAME} PRIVATE -Wall -Werror=implicit-function-declaration -std=c11)