2023-08-26 08:44:30 +00:00
|
|
|
cmake_minimum_required(VERSION 3.15)
|
|
|
|
project(BuilderPattern)
|
|
|
|
set(SRC_LIST main.cpp)
|
2023-08-06 07:15:10 +00:00
|
|
|
|
2023-08-26 08:44:30 +00:00
|
|
|
get_filename_component(FOLDER_NAME ${CMAKE_CURRENT_SOURCE_DIR} DIRECTORY)
|
|
|
|
get_filename_component(FOLDER_NAME ${FOLDER_NAME} NAME)
|
|
|
|
set(EXECUTABLE_OUTPUT_PATH ${OUTPUT_DIR}/${FOLDER_NAME})
|
|
|
|
add_executable(app15 ${SRC_LIST})
|