mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2024-12-02 14:24:14 +01:00
12 lines
237 B
CMake
12 lines
237 B
CMake
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)
|