Build SDK
All checks were successful
Builds / ExectOS (amd64, release) (push) Successful in 31s
Builds / ExectOS (amd64, debug) (push) Successful in 33s
Builds / ExectOS (i686, release) (push) Successful in 26s
Builds / ExectOS (i686, debug) (push) Successful in 28s

This commit is contained in:
2025-09-11 20:09:21 +02:00
parent 5f44458e64
commit 96043f3d70
4 changed files with 7 additions and 1 deletions

1
sdk/CMakeLists.txt Normal file
View File

@@ -0,0 +1 @@
set_sdk_target("xtdk/" "include")

View File

@@ -89,6 +89,10 @@ function(set_install_target TARGET DESTINATION)
install(TARGETS ${TARGET} DESTINATION ${EXECTOS_BINARY_DIR}/output/binaries/${DESTINATION})
endfunction()
function(set_sdk_target FILENAME DESTINATION)
install(DIRECTORY ${FILENAME} DESTINATION ${EXECTOS_BINARY_DIR}/output/sdk/${DESTINATION})
endfunction()
# This function is responsible for compiling module SPEC file
function(set_specfile SPECFILE EXPORTNAME)
if(NOT ${ARGC} EQUAL 2)