File: CMakeLists.txt

package info (click to toggle)
cppad 2026.00.00.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 11,584 kB
  • sloc: cpp: 112,960; sh: 6,146; ansic: 179; python: 71; sed: 12; makefile: 10
file content (28 lines) | stat: -rw-r--r-- 893 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-or-later
# SPDX-FileCopyrightText: Bradley M. Bell <bradbell@seanet.com>
# SPDX-FileContributor: 2003-25 Bradley M. Bell
# ----------------------------------------------------------------------------
#
# det_by_minor.cpp
CONFIGURE_FILE(
   ${CMAKE_CURRENT_SOURCE_DIR}/../det_by_minor.c
   ${CMAKE_CURRENT_BINARY_DIR}/det_by_minor.cpp
   COPYONLY
)
ADD_EXECUTABLE(test_more_compare_c_cpp EXCLUDE_FROM_ALL det_by_minor.cpp)
#
SET_TARGET_PROPERTIES(
   test_more_compare_c_cpp PROPERTIES COMPILE_FLAGS "${all_cxx_flags}"
)
#
# List of libraries to be linked into the specified target
TARGET_LINK_LIBRARIES(test_more_compare_c_cpp
   ${cppad_lib}
   ${colpack_libs}
)
SET_TARGET_PROPERTIES(test_more_compare_c_cpp PROPERTIES
   LINK_OPTIONS "${cppad_link_flags}"
)
#
# check_test_more_compare_c_cpp
add_check_executable(check_test_more_compare_c cpp)