add CMakeLists.txt for Command.

master
fengqiangguo 2023-08-06 15:15:10 +08:00
parent cd3134cd64
commit c6ca8bdba8
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 3.17)
project(Command)
message(STATUS "start building......")
set(OUT_DIR ../)
set(EXECUTABLE_OUTPUT_PATH ${OUT_DIR}/bin)
file(GLOB SRC_LIST ${CMAKE_CURRENT_SOURCE_DIR}/*.cpp)
add_executable(app ${SRC_LIST})