mirror of
https://github.com/ttroy50/cmake-examples.git
synced 2025-12-18 12:14:36 +03:00
6 lines
131 B
CMake
6 lines
131 B
CMake
# Set the project name
|
|
project (subproject1)
|
|
|
|
# Add an executable with the above sources
|
|
add_executable(${PROJECT_NAME} main1.cpp)
|