xo-umbrella2/xo-pyjit/CMakeLists.txt
Roland Conybeare afef1e4b66 git subrepo clone (merge) git@github.com:Rconybea/xo-pyjit.git xo-pyjit
subrepo:
  subdir:   "xo-pyjit"
  merged:   "435ea9fc"
upstream:
  origin:   "git@github.com:Rconybea/xo-pyjit.git"
  branch:   "main"
  commit:   "435ea9fc"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:32:59 -04:00

28 lines
685 B
CMake

# xo-pyjit/CMakeLists.txt
cmake_minimum_required(VERSION 3.10)
project(xo_pyjit VERSION 0.1)
include(GNUInstallDirs)
include(cmake/xo-bootstrap-macros.cmake)
xo_cxx_toplevel_options3()
# ----------------------------------------------------------------
# c++ settings (usually temporary)
set(PROJECT_CXX_FLAGS "")
add_definitions(${PROJECT_CXX_FLAGS})
# ----------------------------------------------------------------
add_subdirectory(src/pyjit)
#add_subdirectory(utest)
# ----------------------------------------------------------------
# provide find_package() support
xo_export_cmake_config(${PROJECT_NAME} ${PROJECT_VERSION} ${PROJECT_NAME}Targets)
# end CMakeLists.txt