From da19f382abfc1eb86d78b01b3606694489f0cbde Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Sun, 8 May 2016 15:01:46 +0000 Subject: [PATCH] Add the AHK tests as an optional module. ONLINE-567 svn path=/trunk/; revision=71288 --- reactos/modules/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reactos/modules/CMakeLists.txt b/reactos/modules/CMakeLists.txt index 93467e15e7d..3553f43f9af 100644 --- a/reactos/modules/CMakeLists.txt +++ b/reactos/modules/CMakeLists.txt @@ -11,6 +11,11 @@ if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/wallpapers/) add_subdirectory(wallpapers) endif() +if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/AHK_Tests/) + add_subdirectory(AHK_Tests) +endif() + + ## Extra files for Boot/Live/Hybrid CD. You need to put them under [boot|live|hybrid]cd_extras ## in the same layout as you want them to be in the CD. if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/bootcd_extras/)