Skip to content
Permalink
b2b99ad1dc
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
17 lines (13 sloc) 367 Bytes
cmake_minimum_required(VERSION 3.16)
project(
${PROJECT_NAME}miniproject
VERSION 0.1.0
DESCRIPTION "Mini Project"
LANGUAGES CXX
)
message( "=== Add ${PROJECT_NAME} examples ===" )
add_subdirectory(examples)
message( "=== Add ${PROJECT_NAME} labs ===" )
add_subdirectory(labs)
message( "=== Add ${PROJECT_NAME} tests ===" )
add_subdirectory(tests)