summaryrefslogtreecommitdiff
path: root/CMakeLists.txt
diff options
context:
space:
mode:
authorgkostka <kostka.grzegorz@gmail.com>2013-10-27 11:48:48 +0000
committergkostka <kostka.grzegorz@gmail.com>2013-10-27 11:48:48 +0000
commitc109281525bd972c75050db10980fe42ffdc80b7 (patch)
treec086ac1a5e2becf535fe09d5ea8e480e73511699 /CMakeLists.txt
parent5aa75f97a60f95b53a11caf31044363434227f07 (diff)
FEATURES:
1. New io_raw block device. Allows to access windows partitions. 2. Demo app timings. Windows ext2/3/4 volume access. 3. Faster big file read/write operations (multi block mode).
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 5531090..9fb297e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,9 +25,13 @@ add_custom_target(size ALL DEPENDS lwext4 COMMAND ${SIZE} -B liblwext4.a)
else()
#Generic example target
include_directories(blockdev/filedev)
+include_directories(blockdev/io_raw)
+
aux_source_directory(blockdev/filedev FILEDEV_SRC)
+aux_source_directory(blockdev/io_raw IORAW_SRC)
aux_source_directory(demos/generic GENERIC_SRC)
-add_executable(fileimage_demo ${GENERIC_SRC} ${FILEDEV_SRC})
+
+add_executable(fileimage_demo ${GENERIC_SRC} ${FILEDEV_SRC} ${IORAW_SRC})
target_link_libraries(fileimage_demo lwext4)
add_custom_target(size ALL DEPENDS lwext4 COMMAND size -B liblwext4.a)
endif()