2025-06-22 21:05:09 +02:00
|
|
|
cmake_minimum_required(VERSION 3.22)
|
|
|
|
|
|
|
|
|
|
## The Core Core Library
|
2025-12-27 23:35:23 +01:00
|
|
|
project(pd-drivers LANGUAGES CXX VERSION 0.6.0)
|
2025-06-22 21:05:09 +02:00
|
|
|
|
|
|
|
|
set(SRC
|
|
|
|
|
source/hid.cpp
|
|
|
|
|
source/os.cpp
|
|
|
|
|
source/gfx.cpp
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
# Only Static Supported
|
|
|
|
|
pd_add_lib(pd-drivers SRC_FILES ${SRC})
|