mirror of
https://github.com/2martens/uni.git
synced 2026-05-06 19:36:26 +02:00
8 lines
231 B
CMake
8 lines
231 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
add_library(Rectangle Rectangle.cpp)
|
|
project(sheet1)
|
|
add_executable(main main.cpp)
|
|
target_link_libraries(main Rectangle)
|
|
add_executable(hello hello.cpp)
|
|
add_executable(AskInteger AskInteger.cpp)
|