diff options
author | Lukas Rusak <lorusak@gmail.com> | 2016-12-24 10:25:54 -0800 |
---|---|---|
committer | Lukas Rusak <lorusak@gmail.com> | 2016-12-28 09:29:06 -0800 |
commit | f2bd81cc4c7e24a5aa778e8d53b8c22a4f24d2ae (patch) | |
tree | a2ab6b4410271ada5fefd7c3570d7d56249eb6bb /CMakeLists.txt | |
parent | f7fe03ae38048976236cd8f2d0cda4fa3bfa284c (diff) |
[cmake] add imx support
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 660fb71071..a32acc0c80 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,6 +54,7 @@ if(UNIX) if(CORE_SYSTEM_NAME STREQUAL linux OR CORE_SYSTEM_NAME STREQUAL freebsd) option(ENABLE_X11 "Enable X11 support?" ON) option(ENABLE_AML "Enable AML?" OFF) + option(ENABLE_IMX "Enable IMX?" OFF) endif() endif() # System options @@ -220,6 +221,7 @@ endif() if(CORE_SYSTEM_NAME STREQUAL android OR CORE_SYSTEM_NAME STREQUAL linux) core_optional_dep(AML) + core_optional_dep(IMX) elseif(CORE_SYSTEM_NAME STREQUAL rbpi) core_require_dep(MMAL) endif() |