From 7d5cad4093d74f70cf62a0291b4f4ab4df868145 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 1 May 2020 08:31:55 -0400 Subject: [PATCH] CMakeLists: Specify EXCLUDE_FROM_ALL for teakra Ensures that unused targets introduced in the add_subdirectory call don't show up in IDE builds if they aren't used (which is the case for teakra_c). --- externals/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/externals/CMakeLists.txt b/externals/CMakeLists.txt index 7303b8967..c3297571f 100644 --- a/externals/CMakeLists.txt +++ b/externals/CMakeLists.txt @@ -72,7 +72,7 @@ add_subdirectory(soundtouch) target_include_directories(SoundTouch INTERFACE ./soundtouch/include) # Teakra -add_subdirectory(teakra) +add_subdirectory(teakra EXCLUDE_FROM_ALL) # Xbyak if (ARCHITECTURE_x86_64)