diff options
author | Nicky <nicky.dasmijn@gmail.com> | 2022-04-17 18:28:55 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@gmail.com> | 2022-04-17 18:28:55 +0200 |
commit | 363f2df4fa22b3eb95ff4603d73b7a042f3fefd1 (patch) | |
tree | 2be3fd78495421ec59ad2f9aa2310002008af6fc /indra/cmake/bugsplat.cmake | |
parent | e0cf0cdfd49e5a946dcd202a083fb23f01e4f1fe (diff) |
Remove function create_target and instead directly use add_library
Diffstat (limited to 'indra/cmake/bugsplat.cmake')
-rw-r--r-- | indra/cmake/bugsplat.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/cmake/bugsplat.cmake b/indra/cmake/bugsplat.cmake index 21a6e074fc..f645d9d449 100644 --- a/indra/cmake/bugsplat.cmake +++ b/indra/cmake/bugsplat.cmake @@ -10,7 +10,7 @@ else (INSTALL_PROPRIETARY) endif (INSTALL_PROPRIETARY) include_guard() -create_target(ll::bugsplat) +add_library( ll::bugsplat INTERFACE IMPORTED ) if (USE_BUGSPLAT) include(Prebuilt) |