From 893ef9631bde944d54afa8559408dae4e3167c0d Mon Sep 17 00:00:00 2001 From: Jussi Pakkanen Date: Tue, 18 Dec 2012 15:40:10 +0200 Subject: Enabled pch for launcher-lib. (bzr r2998.2.4) --- launcher/CMakeLists.txt | 1 + launcher/pch/launcher_pch.hh | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 launcher/pch/launcher_pch.hh (limited to 'launcher') diff --git a/launcher/CMakeLists.txt b/launcher/CMakeLists.txt index cfb6bfb5e..b08719bc0 100644 --- a/launcher/CMakeLists.txt +++ b/launcher/CMakeLists.txt @@ -81,6 +81,7 @@ endif () add_library (launcher-lib STATIC ${LAUNCHER_SOURCES}) add_dependencies (launcher-lib unity-core-${UNITY_API_VERSION} unity-shared) target_link_libraries (launcher-lib unity-shared) +add_pch(pch/launcher_pch.hh launcher-lib) set (SWITCHER_SOURCES SwitcherController.cpp diff --git a/launcher/pch/launcher_pch.hh b/launcher/pch/launcher_pch.hh new file mode 100644 index 000000000..569390f4b --- /dev/null +++ b/launcher/pch/launcher_pch.hh @@ -0,0 +1,33 @@ +// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*- +/* + * Copyright (C) 2012 Canonical Ltd + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 3 as + * published by the Free Software Foundation. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + * + * Authored by: Jussi Pakkanen + */ + +/* + * These are the precompiled header includes for this module. + * Only system header files can be listed here. + */ + +#include + +#include +#include +#include +#include + +#include +#include -- cgit v1.2.3