From 844be60f18cfd618a0c7cc41208e3e97a64d2983 Mon Sep 17 00:00:00 2001 From: David Rowe Date: Thu, 23 Oct 2014 14:34:23 -0700 Subject: [PATCH] Fix CMake to find ATL on Windows build PC --- interface/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index 97eb5e1a4d..b5b82c24e6 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -49,6 +49,7 @@ endforeach(SUBDIR) # Add SpeechRecognizer if on Windows or OS X, otherwise remove if (WIN32) # Use .cpp and .h files as is. + find_package(ATL) elseif (APPLE) file(GLOB INTERFACE_OBJCPP_SRCS "src/SpeechRecognizer.mm") set(INTERFACE_SRCS ${INTERFACE_SRCS} ${INTERFACE_OBJCPP_SRCS})