File: CMakeLists.txt

package info (click to toggle)
mdds 3.2.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,828 kB
  • sloc: cpp: 21,913; exp: 6,696; makefile: 698; ansic: 616; python: 602; sh: 428; lisp: 8
file content (14 lines) | stat: -rw-r--r-- 383 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# SPDX-FileCopyrightText: 2025 Kohei Yoshida
#
# SPDX-License-Identifier: MIT

add_executable(misc-mtv-copy-blocks EXCLUDE_FROM_ALL
    mtv_copy_blocks.cpp
)

add_executable(misc-mtv-clone-noncopyable EXCLUDE_FROM_ALL
    mtv_clone_noncopyable.cpp
)

target_link_libraries(misc-mtv-copy-blocks PUBLIC test-global)
target_link_libraries(misc-mtv-clone-noncopyable PUBLIC test-global)