littletorrent/CMakeLists.txt

7 lines
266 B
CMake
Raw Permalink Normal View History

2024-04-13 18:43:34 +00:00
cmake_minimum_required(VERSION 3.10)
project(MyNewProgram VERSION 1.0
DESCRIPTION "CHOOSE YOUR DESCRIPTION")
add_subdirectory(deps/cmake-library)
add_executable(${PROJECT_NAME} src/main.c)
target_link_libraries(${PROJECT_NAME} PUBLIC MyNewLibrary)