12 lines
183 B
CMake
12 lines
183 B
CMake
set(target mainApp)
|
|
|
|
add_executable(${target}
|
|
main.cpp
|
|
)
|
|
|
|
target_compile_features(${target} PRIVATE cxx_std_23)
|
|
|
|
target_link_libraries(${target}
|
|
PRIVATE
|
|
project_core
|
|
) |