From 013e57e0ff095f7fb7ebf6dd8853004aeb98c119 Mon Sep 17 00:00:00 2001 From: Hugues Delorme Date: Mon, 27 Jan 2014 22:56:25 +0100 Subject: [PATCH] cmake: fix building of internal source files --- CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fb94ae4..da588e4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -15,7 +15,8 @@ option(BUILD_WITH_OCC_SUPPORT "Build with OpenCascade support" OFF) # Add core source files file(GLOB ALL_SRC_FILES src/*) -file(GLOB ALL_SRC_FILES src/internal/*) +file(GLOB ALL_SRC_INTERNAL_FILES src/internal/*) +set(ALL_SRC_FILES ${ALL_SRC_FILES} ${ALL_SRC_INTERNAL_FILES}) # Have ? check_include_files(stdint.h FOUG_HAVE_STDINT_H)