Fix set_property(TARGET ${example}) calls

The use of ${example} in some set_property(TARGET PROPERTY FOLDER) calls
was a copy-and-paste error introduced in commit fd28873. Replace
${example} with the correct target names.

Add a set_property(TARGET PROPERTY FOLDER) call for the aom_usage_exit
library target (added in commit 827c8fd).

Change-Id: I8ece08ebe300d91ac0d695b54457aba395ef89e2
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bdb117de..5dfd628 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -442,17 +442,18 @@
 #
 if(ENABLE_EXAMPLES OR ENABLE_TESTS OR ENABLE_TOOLS)
   add_library(aom_common_app_util OBJECT ${AOM_COMMON_APP_UTIL_SOURCES})
+  set_property(TARGET aom_common_app_util PROPERTY FOLDER examples)
   add_library(aom_usage_exit OBJECT "${AOM_GEN_SRC_DIR}/usage_exit.c")
-  set_property(TARGET ${example} PROPERTY FOLDER examples)
+  set_property(TARGET aom_usage_exit PROPERTY FOLDER examples)
   if(CONFIG_AV1_DECODER)
     add_library(aom_decoder_app_util OBJECT ${AOM_DECODER_APP_UTIL_SOURCES})
-    set_property(TARGET ${example} PROPERTY FOLDER examples)
+    set_property(TARGET aom_decoder_app_util PROPERTY FOLDER examples)
     # obudec depends on internal headers that require *rtcd.h
     add_dependencies(aom_decoder_app_util aom_rtcd)
   endif()
   if(CONFIG_AV1_ENCODER)
     add_library(aom_encoder_app_util OBJECT ${AOM_ENCODER_APP_UTIL_SOURCES})
-    set_property(TARGET ${example} PROPERTY FOLDER examples)
+    set_property(TARGET aom_encoder_app_util PROPERTY FOLDER examples)
   endif()
 endif()