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:
parent
85d37c9994
commit
7d5cad4093
|
@ -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)
|
||||
|
|
Reference in New Issue