cmake: fix building of internal source files

This commit is contained in:
Hugues Delorme 2014-01-27 22:56:25 +01:00
parent 6ae2de4985
commit 013e57e0ff

View File

@ -15,7 +15,8 @@ option(BUILD_WITH_OCC_SUPPORT "Build with OpenCascade support" OFF)
# Add core source files # Add core source files
file(GLOB ALL_SRC_FILES src/*) 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 <stdint.h> ? # Have <stdint.h> ?
check_include_files(stdint.h FOUG_HAVE_STDINT_H) check_include_files(stdint.h FOUG_HAVE_STDINT_H)