diff options
author | Michael Dickens <michael.dickens@ettus.com> | 2021-01-11 10:49:07 -0500 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2021-01-25 15:24:17 -0600 |
commit | 8aa73deb5a89450c0218a34ad08f4e806833159a (patch) | |
tree | 048f7763bfb331f3f296bf252da8d08fcf0eaab3 /host/lib | |
parent | ea5a08dbc385c38688833fd04c6fe3fc142ea27b (diff) | |
download | uhd-8aa73deb5a89450c0218a34ad08f4e806833159a.tar.gz uhd-8aa73deb5a89450c0218a34ad08f4e806833159a.tar.bz2 uhd-8aa73deb5a89450c0218a34ad08f4e806833159a.zip |
cmake: fix cut-and-paste typo to fix SIM APPLE build
Ref: 00c306d5c441e60e7dfd2516e05e4e433977ecee
Diffstat (limited to 'host/lib')
-rw-r--r-- | host/lib/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/CMakeLists.txt b/host/lib/CMakeLists.txt index 37f73f108..4fff30eaf 100644 --- a/host/lib/CMakeLists.txt +++ b/host/lib/CMakeLists.txt @@ -204,7 +204,7 @@ if(ENABLE_SIM) target_link_libraries(uhd ${PYTHON_LIBRARIES}) if(APPLE) - target_link_options(pyuhd PRIVATE "LINKER:-undefined,dynamic_lookup") + target_link_options(uhd PRIVATE "LINKER:-undefined,dynamic_lookup") endif(APPLE) endif(ENABLE_SIM) |