diff options
author | sanine <sanine.not@pm.me> | 2022-08-30 23:46:40 -0500 |
---|---|---|
committer | sanine <sanine.not@pm.me> | 2022-08-30 23:46:40 -0500 |
commit | eb4e4cab2d3f24ee7f8d0be7149162084fe98392 (patch) | |
tree | 37affdd321ee4f14965eb98000ae82a051efba40 /CMakeLists.txt | |
parent | 489c3771e648d412cab283c660996c880149315d (diff) |
add mono panning
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 76ef10d..16b27d1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,7 +21,7 @@ set_target_properties(mossrose PROPERTIES VERSION ${PROJECT_VERSION} PUBLIC_HEADER src/mossrose.h ) -target_link_libraries(mossrose portaudio plibsys) +target_link_libraries(mossrose portaudio plibsys m) if (MOSSROSE_BUILD_EXAMPLES) @@ -32,7 +32,7 @@ endif() if (MOSSROSE_BUILD_TESTS) add_executable(test) - target_link_libraries(test plibsys) + target_link_libraries(test plibsys m) endif() |