Skip to content

Commit

Permalink
cmake:migrate apps CMakeLists for libtommath
Browse files Browse the repository at this point in the history
Signed-off-by: xuxin19 <[email protected]>
  • Loading branch information
xuxin930 committed Jul 28, 2023
1 parent 7b066ed commit 63b3735
Show file tree
Hide file tree
Showing 2 changed files with 140 additions and 0 deletions.
2 changes: 2 additions & 0 deletions math/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@
#
# ##############################################################################

nuttx_add_subdirectory()

nuttx_generate_kconfig(MENUDESC "Math Library Support")
138 changes: 138 additions & 0 deletions math/libtommath/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
# ##############################################################################
# apps/math/libtommath/CMakeLists.txt
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
# file to you under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
# ##############################################################################

if(CONFIG_MATH_LIBTOMMATH)

# ############################################################################
# Config and Fetch Tommath lib
# ############################################################################
set(CONFIG_LIBTOMMATH_URL https://github.com/libtom/libtommath/archive)

set(LIBTOMMATH_DIR ${CMAKE_CURRENT_LIST_DIR}/libtommath)

if(NOT EXISTS ${CMAKE_CURRENT_LIST_DIR}/libtommath)
FetchContent_Declare(
libtommath URL ${CONFIG_LIBTOMMATH_URL}/v${CONFIG_LIBTOMMATH_VERSION}.zip)
FetchContent_MakeAvailable(libtommath)

set(LIBTOMMATH_DIR ${libtommath_SOURCE_DIR})
endif()

# ############################################################################
# Flags
# ############################################################################

set(CFLAGS -Wno-format)

# ############################################################################
# Sources
# ############################################################################

file(GLOB CSRCS ${LIBTOMMATH_DIR}/*.c)

if(CONFIG_LIBTOMMATH_DEMOS)
list(APPEND CSRCS ${LIBTOMMATH_DIR}/demo/shared.c)
endif()

# ############################################################################
# Include Directory
# ############################################################################

set(INCDIR ${LIBTOMMATH_DIR})

# ############################################################################
# Library Configuration
# ############################################################################

nuttx_add_library(libtommath STATIC)
target_compile_options(libtommath PRIVATE ${CFLAGS})
target_sources(libtommath PRIVATE ${CSRCS})
target_include_directories(libtommath PRIVATE ${INCDIR})

# ############################################################################
# Applications Configuration
# ############################################################################

if(CONFIG_LIBTOMMATH_TEST)
nuttx_add_application(
NAME
${CONFIG_LIBTOMMATH_TEST_PROGNAME}
STACKSIZE
${CONFIG_LIBTOMMATH_TEST_STACKSIZE}
PRIORITY
${CONFIG_LIBTOMMATH_TEST_PRIORITY}
SRCS
${LIBTOMMATH_DIR}/demo/test.c
INCLUDE_DIRECTORIES
${INCDIR}
DEPENDS
libtommath)
endif()

if(CONFIG_LIBTOMMATH_MTEST_OPPONENT)
nuttx_add_application(
NAME
${CONFIG_LIBTOMMATH_MTEST_OPPONENT_PROGNAME}
STACKSIZE
${CONFIG_LIBTOMMATH_MTEST_OPPONENT_STACKSIZE}
PRIORITY
${CONFIG_LIBTOMMATH_MTEST_OPPONENT_PRIORITY}
SRCS
${LIBTOMMATH_DIR}/demo/mtest_opponent.c
INCLUDE_DIRECTORIES
${INCDIR}
DEPENDS
libtommath)
endif()

if(CONFIG_LIBTOMMATH_TIMING)
nuttx_add_application(
NAME
${CONFIG_LIBTOMMATH_TIMING_PROGNAME}
STACKSIZE
${CONFIG_LIBTOMMATH_TIMING_STACKSIZE}
PRIORITY
${CONFIG_LIBTOMMATH_TIMING_PRIORITY}
SRCS
${LIBTOMMATH_DIR}/demo/timing.c
INCLUDE_DIRECTORIES
${INCDIR}
DEPENDS
libtommath)

endif()

if(CONFIG_LIBTOMMATH_MTEST)
nuttx_add_application(
NAME
${CONFIG_LIBTOMMATH_MTEST_PROGNAME}
STACKSIZE
${CONFIG_LIBTOMMATH_MTEST_STACKSIZE}
PRIORITY
${CONFIG_LIBTOMMATH_MTEST_PRIORITY}
SRCS
${LIBTOMMATH_DIR}/mtest/mtest.c
INCLUDE_DIRECTORIES
${INCDIR}
DEPENDS
libtommath)
endif()

endif()

0 comments on commit 63b3735

Please sign in to comment.