mirror of
https://github.com/Yours3lf/rpi-vk-driver.git
synced 2025-02-19 16:54:18 +01:00
----------------------------------------------- -j support. Yocto needs this. Move external references into toolchain to avoid conflict with Yocto Sysroot. Move CPU tuning into toolchain. Clang uses a different tuning scheme. Python required check for Yocto. Correct usage of project details. Required for packaging step. Organize key/value to enable central place to change Toolchain path is discovered based on toolchain triple. Minimum requirement is to add toolchain bin path to your path. Add install_user step to replace install.sh Allow overriding user name. Username will not always be 'pi'. zlib.h and zconf.h from raspbian rootfs (missing form rpi toolchain sysroot) rename drm-uapi to match yocto -> libdrm packaging, testing, and rpath for unit tests stick with sdk branches CMake documentation -> BUILD.md Move -Wall to global.cmake, which makes for easier filtering Rename toolchain.cmake as it is GCC specific vulkaninfo from vulkan-tools
19 lines
491 B
CMake
19 lines
491 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
cmake_policy(SET CMP0048 NEW)
|
|
|
|
project(QPUassembler)
|
|
|
|
file(GLOB asmSrc
|
|
"qpu_assembler.h"
|
|
"qpu_assembler.c"
|
|
)
|
|
|
|
add_library(QPUassembler OBJECT ${asmSrc})
|
|
target_compile_options(QPUassembler PRIVATE -Wall -Werror=implicit-function-declaration)
|
|
|
|
add_executable(QPUassemblerExe ${asmSrc} main.c shaders.h)
|
|
target_compile_options(QPUassemblerExe PRIVATE -Wall -Werror=implicit-function-declaration)
|
|
|
|
install(TARGETS QPUassemblerExe RUNTIME DESTINATION bin)
|