Initial commit.

This commit is contained in:
BadQuanta
2026-04-20 10:41:53 +00:00
commit ba85c37f88
4 changed files with 205 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
cmake_minimum_required(VERSION 3.20)
project(hdk-grid
VERSION 0.0.1
LANGUAGES CXX
)
#TODO: Project options such as tests, examples, coverage, etc.
add_library(hdk-grid INTERFACE)
target_compile_features(hdk-grid INTERFACE cxx_std_17)
target_include_directories(
hdk-grid
INTERFACE
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/include>
$<INSTALL_INTERFACE:include>
)
# TODO: Link to dependencies if we need but keep them minimal and optional.