summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorVitaliy Kirsanov <krokoziabla@yandex-team.ru>2019-04-29 12:48:24 +0300
committerErik de Castro Lopo <erikd@mega-nerd.com>2019-05-04 11:41:48 +1000
commit573dbc12ae3fc68e8edea08842f5864c553cd311 (patch)
treeb5d350a00d8b8b19dd10befe550fe5f86777416f /examples
parent1cb968a7d45eea5f45451981c32df79e5b798739 (diff)
downloadflac-573dbc12ae3fc68e8edea08842f5864c553cd311.tar.gz
Use of BUILD_SHARED_LIBS added
Diffstat (limited to 'examples')
-rw-r--r--examples/c/decode/file/CMakeLists.txt2
-rw-r--r--examples/c/encode/file/CMakeLists.txt2
-rw-r--r--examples/cpp/decode/file/CMakeLists.txt2
-rw-r--r--examples/cpp/encode/file/CMakeLists.txt2
4 files changed, 4 insertions, 4 deletions
diff --git a/examples/c/decode/file/CMakeLists.txt b/examples/c/decode/file/CMakeLists.txt
index 60dc18e0..53a29918 100644
--- a/examples/c/decode/file/CMakeLists.txt
+++ b/examples/c/decode/file/CMakeLists.txt
@@ -1,2 +1,2 @@
add_executable(decode_file main.c)
-target_link_libraries(decode_file FLAC-static)
+target_link_libraries(decode_file FLAC)
diff --git a/examples/c/encode/file/CMakeLists.txt b/examples/c/encode/file/CMakeLists.txt
index c9c8e802..4b7d4c2c 100644
--- a/examples/c/encode/file/CMakeLists.txt
+++ b/examples/c/encode/file/CMakeLists.txt
@@ -1,2 +1,2 @@
add_executable(encode_file main.c)
-target_link_libraries(encode_file FLAC-static)
+target_link_libraries(encode_file FLAC)
diff --git a/examples/cpp/decode/file/CMakeLists.txt b/examples/cpp/decode/file/CMakeLists.txt
index 46ab401e..2ce420d7 100644
--- a/examples/cpp/decode/file/CMakeLists.txt
+++ b/examples/cpp/decode/file/CMakeLists.txt
@@ -1,2 +1,2 @@
add_executable(decode_file_cxx main.cpp)
-target_link_libraries(decode_file_cxx FLAC++-static)
+target_link_libraries(decode_file_cxx FLAC++)
diff --git a/examples/cpp/encode/file/CMakeLists.txt b/examples/cpp/encode/file/CMakeLists.txt
index cc117215..26178763 100644
--- a/examples/cpp/encode/file/CMakeLists.txt
+++ b/examples/cpp/encode/file/CMakeLists.txt
@@ -1,2 +1,2 @@
add_executable(encode_file_cxx main.cpp)
-target_link_libraries(encode_file_cxx FLAC++-static)
+target_link_libraries(encode_file_cxx FLAC++)