cmake_minimum_required(VERSION3.16)project(project_template)# Use AUI.Boot## Download aui.boot.cmake (one-time):# curl https://raw.githubusercontent.com/aui-framework/aui/refs/heads/master/aui.boot.cmake -o aui.boot.cmake## Or use CLI mode:# cmake -P aui.boot.cmake update#include(aui.boot.cmake)# link AUIauib_import(AUIhttps://github.com/aui-framework/auiCOMPONENTScore)# Create the executable. This function automatically links all sources from the src/ folder, creates CMake target and# places the resulting executable to bin/ folder.aui_executable(project_template)# Link required libstarget_link_libraries(project_templatePRIVATEaui::core)