xo-umbrella2/xo-jit/utest/CMakeLists.txt
Roland Conybeare 1443af05e0 git subrepo clone git@github.com:Rconybea/xo-jit.git xo-jit
subrepo:
  subdir:   "xo-jit"
  merged:   "29904c01"
upstream:
  origin:   "git@github.com:Rconybea/xo-jit.git"
  branch:   "main"
  commit:   "29904c01"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:13:26 -04:00

17 lines
434 B
CMake

# xo-jit/utest/CMakeLists.txt
set(SELF_EXE utest.jit)
set(SELF_SRCS
jit_utest_main.cpp
MachPipeline.test.cpp
)
if (ENABLE_TESTING)
xo_add_utest_executable(${SELF_EXE} ${SELF_SRCS})
xo_self_dependency(${SELF_EXE} xo_jit)
xo_dependency(${SELF_EXE} xo_ratio)
xo_headeronly_dependency(${SELF_EXE} xo_reflectutil)
xo_external_target_dependency(${SELF_EXE} Catch2 Catch2::Catch2)
endif()
# end CMakeLists.txt