File: CMakeLists.txt

package info (click to toggle)
fluidsynth 2.4.4%2Bdfsg-1%2Bdeb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 6,328 kB
  • sloc: ansic: 43,529; cpp: 1,434; xml: 1,020; makefile: 71; sh: 46
file content (8 lines) | stat: -rw-r--r-- 207 bytes parent folder | download
1
2
3
4
5
6
7
8
cmake_minimum_required(VERSION 3.13)
project(consuming_test LANGUAGES C)

find_package(FluidSynth CONFIG REQUIRED)

add_executable(main main.c)

target_link_libraries(main PRIVATE FluidSynth::libfluidsynth)