Disable CMake build for now, seems I need a newer CMake version

This commit is contained in:
Dirk Ziegelmeier 2018-10-12 22:22:07 +02:00
parent 426a6004bf
commit 06016cc939
2 changed files with 11 additions and 13 deletions

View File

@ -26,8 +26,6 @@ set(CPACK_SOURCE_PACKAGE_FILE_NAME "lwip-${LWIP_VERSION_MAJOR}.${LWIP_VERSION_MI
include(CPack)
# Target for package generation
if ("${lwipcore_SRCS}" STREQUAL "")
include(src/Filelists.cmake)
endif()
include(src/Filelists.cmake)
add_custom_target(dist COMMAND ${CMAKE_MAKE_PROGRAM} package_source)
add_dependencies(dist lwipdocs)

View File

@ -14,14 +14,14 @@ if [ $ERR != 0 ]; then
fi
make check -j 4
cd ../../../../
#cd ../../../../
mkdir build
cd build
cmake ..
ERR=$?
if [ $ERR != 0 ]; then
echo "cmake failed"
exit 33
fi
cmake --build .
#mkdir build
#cd build
#cmake ..
#ERR=$?
#if [ $ERR != 0 ]; then
# echo "cmake failed"
# exit 33
#fi
#cmake --build .