7 lines
154 B
CMake
7 lines
154 B
CMake
set(target mainApp)
|
|
|
|
add_executable(${target} main.cpp)
|
|
|
|
target_compile_features(${target} PRIVATE cxx_std_23)
|
|
|
|
# target_link_libraries(${target} PRIVATE) |