summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGrzegorz Kostka <kostka.grzegorz@gmail.com>2018-12-03 02:32:28 +0100
committerGitHub <noreply@github.com>2018-12-03 02:32:28 +0100
commit91d77a92de5e065d7be17d9f65c1cc18c665b7bd (patch)
tree7c807db5224317edeef4680f84e64f2d30dea126
parent4de1eee41c775eaac72f799c9d905715a7a2c2aa (diff)
parent1b92315e20ec184899642c2253370ab917801289 (diff)
Merge pull request #45 from MaskRay/include
Don't copy include
-rw-r--r--CMakeLists.txt7
1 files changed, 1 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 68a9cb0..3d0554c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -2,6 +2,7 @@ project(lwext4 C)
cmake_minimum_required(VERSION 2.8)
+include_directories(include)
include_directories(${PROJECT_BINARY_DIR}/include)
include_directories(blockdev/filedev)
include_directories(blockdev/filedev_win)
@@ -84,12 +85,6 @@ else()
set_target_properties(lwext4 PROPERTIES COMPILE_FLAGS "-Wall -Wextra -pedantic")
endif()
-#Config file generation
-file(
- COPY include
- DESTINATION .
-)
-
#DISTRIBUTION
set(CPACK_PACKAGE_VERSION_MAJOR "${VERSION_MAJOR}")
set(CPACK_PACKAGE_VERSION_MINOR "${VERSION_MINOR}")