diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-10-27 17:25:17 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-10-27 17:25:33 (GMT) |
commit | 861876b9369226c6491bd1c1ad4f6ec98a967d0b (patch) | |
tree | abed4214b274065120a00b8faed6a85a0da9d64d | |
parent | 9532e1cf5b238ee5da2ea0b2fbb0194eaa5aaf03 (diff) | |
download | CMake-861876b9369226c6491bd1c1ad4f6ec98a967d0b.zip CMake-861876b9369226c6491bd1c1ad4f6ec98a967d0b.tar.gz CMake-861876b9369226c6491bd1c1ad4f6ec98a967d0b.tar.bz2 |
Tests/ObjectLibrary: fix comment
-rw-r--r-- | Tests/ObjectLibrary/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/ObjectLibrary/CMakeLists.txt b/Tests/ObjectLibrary/CMakeLists.txt index 05a35bb..b57761b 100644 --- a/Tests/ObjectLibrary/CMakeLists.txt +++ b/Tests/ObjectLibrary/CMakeLists.txt @@ -68,7 +68,7 @@ add_library(UseCstaticObjs STATIC $<TARGET_OBJECTS:Cstatic> $<TARGET_OBJECTS:A> # Test a shared library with sources from a different shared library add_library(UseCsharedObjs SHARED $<TARGET_OBJECTS:Cshared> $<TARGET_OBJECTS:A> $<TARGET_OBJECTS:Bexport>) -# Test a shared executable with sources from a different shared library +# Test a shared executable with sources from a different executable add_executable(UseABstaticObjs $<TARGET_OBJECTS:UseABstatic>) target_link_libraries(UseABstaticObjs ABstatic) |