CMake as an alternative to autotools (experimental)

Change-Id: Ibc59323e849810531dd0963e85493efad3b86857
Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
2018-07-30 12:45:07 +02:00
committed by Florin Coras
parent 5d82d2f149
commit 612dd6a955
46 changed files with 2176 additions and 2 deletions

View File

@ -12,6 +12,7 @@
# limitations under the License.
vpp_source = src
ifneq ($(vpp_uses_cmake),yes)
ifeq ($($(PLATFORM)_dpdk_shared_lib),yes)
vpp_configure_args = --enable-dpdk-shared
@ -49,3 +50,18 @@ endif
ifeq ($($(PLATFORM)_enable_tests),yes)
vpp_configure_args += --enable-tests
endif
else
vpp_configure_depend += dpdk-install
vpp_configure = \
cd $(PACKAGE_BUILD_DIR) && \
cmake -G Ninja \
-DCMAKE_INSTALL_PREFIX:PATH=$(PACKAGE_INSTALL_DIR) \
-DCMAKE_C_FLAGS="$($(TAG)_TAG_CFLAGS)" \
-DDPDK_INCLUDE_DIR_HINT="$(PACKAGE_INSTALL_DIR)/../dpdk/include" \
-DDPDK_LIB_DIR_HINT="$(PACKAGE_INSTALL_DIR)/../dpdk/lib" \
$(call find_source_fn,$(PACKAGE_SOURCE))
#vpp_make_args = --no-print-directory
vpp_build = cmake --build $(PACKAGE_BUILD_DIR)
vpp_install = cmake --build $(PACKAGE_BUILD_DIR) -- install | grep -v 'Set runtime path'
endif

View File

@ -23,6 +23,9 @@ vpp_native_tools = vppapigen
vpp_uses_dpdk = yes
# use cmake as an alternative to autotools
# vpp_uses_cmake = yes
# Uncoment to enable building unit tests
# vpp_enable_tests = yes