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).
This commit is contained in:
Lioncash 2020-05-01 08:31:55 -04:00
parent 85d37c9994
commit 7d5cad4093

View file

@ -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)