From 3f427653d8ae045eb33d882a2afc45a90499969f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Wed, 7 Jan 2015 17:55:58 +0000 Subject: [PATCH] [TOOLS]: Adds back kbdtool (Keyboard Layout Compiler), and hpp (Header File Preprocessor) too, to host-tools compilation. svn path=/trunk/; revision=65994 --- reactos/tools/CMakeLists.txt | 2 ++ reactos/tools/kbdtool/CMakeLists.txt | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 reactos/tools/kbdtool/CMakeLists.txt diff --git a/reactos/tools/CMakeLists.txt b/reactos/tools/CMakeLists.txt index f3bf96418e1..7c2981610ce 100644 --- a/reactos/tools/CMakeLists.txt +++ b/reactos/tools/CMakeLists.txt @@ -15,6 +15,8 @@ add_executable(utf16le utf16le/utf16le.cpp) add_subdirectory(cabman) add_subdirectory(cdmake) +add_subdirectory(hpp) +add_subdirectory(kbdtool) add_subdirectory(mkhive) add_subdirectory(unicode) add_subdirectory(widl) diff --git a/reactos/tools/kbdtool/CMakeLists.txt b/reactos/tools/kbdtool/CMakeLists.txt new file mode 100644 index 00000000000..0e9db092e02 --- /dev/null +++ b/reactos/tools/kbdtool/CMakeLists.txt @@ -0,0 +1,2 @@ + +add_executable(kbdtool data.c main.c output.c parser.c)