cmake_minimum_required(VERSION3.16)project(project_template)# Use AUI.Bootfile(DOWNLOADhttps://raw.githubusercontent.com/aui-framework/aui/master/aui.boot.cmake${CMAKE_CURRENT_BINARY_DIR}/aui.boot.cmake)include(${CMAKE_CURRENT_BINARY_DIR}/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)