5 lines
109 B
CMake
5 lines
109 B
CMake
|
cmake_minimum_required(VERSION 3.5)
|
||
|
project(owo)
|
||
|
add_executable(owo src/main.cpp)
|
||
|
target_link_libraries(owo)
|