From dd3952923a2cfb9fa2276a4f1f6512ff75e1a155 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Tue, 15 Jan 2019 00:36:03 +0100 Subject: cmake: initial cross-compilation support Change-Id: Ib9c2aba1eda08a22465441e33553b9b744c79d56 Signed-off-by: Damjan Marion --- src/plugins/dpdk/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/plugins') diff --git a/src/plugins/dpdk/CMakeLists.txt b/src/plugins/dpdk/CMakeLists.txt index 45605baada0..36a369c0a7b 100644 --- a/src/plugins/dpdk/CMakeLists.txt +++ b/src/plugins/dpdk/CMakeLists.txt @@ -11,6 +11,11 @@ # See the License for the specific language governing permissions and # limitations under the License. +if (CMAKE_CROSSCOMPILING) + # not supported yet + return() +endif() + ############################################################################## # Find lib and include files ############################################################################## -- cgit 1.2.3-korg