X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=CMakeLists.txt;h=68a9cb0d2c6aa1e30072c7f4adff11e437207e19;hb=803375001a1985ae323c86fa3f6f2c4eff14e1e9;hp=99de12e00bd3b3da527bfaa4e3410831d7c6b18c;hpb=116deff32e58ff49c677f2ecad9ad224d9af7581;p=lwext4.git diff --git a/CMakeLists.txt b/CMakeLists.txt index 99de12e..68a9cb0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,54 +1,105 @@ -project(lwext4 C) -cmake_minimum_required(VERSION 2.8) - - -include_directories(lwext4) -include_directories(blockdev/filedev) -include_directories(blockdev/filedev_win) - - -#Library build -add_subdirectory(lwext4) -#Detect all possible warnings for lwext4 target -set_target_properties(lwext4 PROPERTIES COMPILE_FLAGS "-Wall -Wextra -pedantic") - -#Examples -if (CMAKE_SYSTEM_PROCESSOR STREQUAL cortex-m0) - #cortex-m0 demos - #... -elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL cortex-m3) - #cortex-m3 demos - -elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL arm-sim) - #arm-sim demos - add_subdirectory(blockdev) - add_subdirectory(demos/generic) -elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL cortex-m4) - #cortex-m4 demos - add_subdirectory(demos/stm32f429_disco) -elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL bf518) - #bf518 demos - #... -elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL avrxmega7) - #avrxmega7 demos - #... -else() - #Generic example target - add_subdirectory(blockdev) - add_subdirectory(fs_test) - add_subdirectory(demos/generic) -endif() - - -#DISTRIBUTION -set(CPACK_PACKAGE_VERSION_MAJOR "0") -set(CPACK_PACKAGE_VERSION_MINOR "4") -set(CPACK_PACKAGE_VERSION_PATCH "0") -set(CPACK_SOURCE_GENERATOR "TBZ2") -set(CPACK_SOURCE_PACKAGE_FILE_NAME - "${CMAKE_PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") -set(CPACK_SOURCE_IGNORE_FILES -"/build" ".svn") -include(CPack) - -add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source) +project(lwext4 C) +cmake_minimum_required(VERSION 2.8) + + +include_directories(${PROJECT_BINARY_DIR}/include) +include_directories(blockdev/filedev) +include_directories(blockdev/filedev_win) + +set(BLOCKDEV_TYPE none) + +add_definitions(-DCONFIG_USE_DEFAULT_CONFIG=0) +add_definitions(-DVERSION="${VERSION}") + +#Examples +if (CMAKE_SYSTEM_PROCESSOR STREQUAL cortex-m0) + #... +elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL cortex-m3) + add_definitions(-DCONFIG_UNALIGNED_ACCESS=1) +elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL arm-sim) + #... +elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL cortex-m4) + add_definitions(-DCONFIG_UNALIGNED_ACCESS=1) +elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL bf518) + #... +elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL avrxmega7) + add_definitions(-DCONFIG_HAVE_OWN_ERRNO=1) +elseif(CMAKE_SYSTEM_PROCESSOR STREQUAL msp430g2210) + add_definitions(-DCONFIG_DEBUG_PRINTF=0) + add_definitions(-DCONFIG_DEBUG_ASSERT=0) + #... +elseif(LIB_ONLY) + add_definitions(-DCONFIG_DEBUG_PRINTF=0) + add_definitions(-DCONFIG_DEBUG_ASSERT=0) + add_definitions(-DCONFIG_HAVE_OWN_OFLAGS=1) + add_definitions(-DCONFIG_HAVE_OWN_ERRNO=0) + add_definitions(-DCONFIG_BLOCK_DEV_CACHE_SIZE=16) +else() + #Generic example target + if (WIN32) + set(BLOCKDEV_TYPE windows) + else() + set(BLOCKDEV_TYPE linux) + endif() + set (INSTALL_LIB 1) + add_definitions(-DCONFIG_HAVE_OWN_OFLAGS=0) + add_definitions(-DCONFIG_HAVE_OWN_ERRNO=0) + add_definitions(-DCONFIG_HAVE_OWN_ASSERT=0) + add_definitions(-DCONFIG_BLOCK_DEV_CACHE_SIZE=16) + add_subdirectory(fs_test) +endif() + +macro(output_configure) + get_property( + definitions + DIRECTORY + PROPERTY COMPILE_DEFINITIONS + ) + file(WRITE + ${PROJECT_BINARY_DIR}/include/generated/ext4_config.h + "") + foreach(item ${definitions}) + string(REGEX MATCH "^CONFIG_" match_res ${item}) + if(match_res) + string(REGEX REPLACE "=(.+)$" "" replace_res ${item}) + string(CONFIGURE + "#define ${replace_res} ${CMAKE_MATCH_1}" + output_str) + file(APPEND + ${PROJECT_BINARY_DIR}/include/generated/ext4_config.h + "${output_str}\n") + endif() + endforeach() +endmacro() +output_configure() + +add_subdirectory(blockdev) + +#Library build +add_subdirectory(src) +#Detect all possible warnings for lwext4 target +if (NOT CMAKE_COMPILER_IS_GNUCC) + set_target_properties(lwext4 PROPERTIES COMPILE_FLAGS "") +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}") +set(CPACK_PACKAGE_VERSION_PATCH "${VERSION_PATCH}") +set(CPACK_SOURCE_GENERATOR "TBZ2") +set(CPACK_SOURCE_PACKAGE_FILE_NAME + "${CMAKE_PROJECT_NAME}-${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}") +set(CPACK_SOURCE_IGNORE_FILES +"/build" ".git") +include(CPack) + + +add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)