diff options
author | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2022-12-10 10:33:32 +0900 |
---|---|---|
committer | Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp> | 2023-11-26 20:11:57 +0900 |
commit | 5b7127cac34bf44a9d9e58c02b44939955d50890 (patch) | |
tree | bf38bc8199469132a9996e69b922db7b66c71e9c | |
parent | 35c1c5fe90629bfca76b82fc5b6180fa18cf648b (diff) |
Enable Ahead-of-Time Compilation
This patch enable ahead-of-Time Compilation for QML.
That aim to booting time speed up.
Bug-AGL: SPEC-4991
Change-Id: I72bb7e647c2a3a226fc68d4ff7cf3e84f6a8c238
Signed-off-by: Naoto Yamaguchi <naoto.yamaguchi@aisin.co.jp>
-rw-r--r-- | CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index d1cfb37..88159e5 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,6 +11,7 @@ set(INSTALL_DIRECTORY "/opt/apps") find_package(Qt5Core REQUIRED) find_package(Qt5Qml REQUIRED) find_package(Qt5Gui REQUIRED) +find_package(Qt5QuickCompiler REQUIRED) include_directories( "${Qt5Core_INCLUDE_DIRS}" |