xo-umbrella2/xo-pyexpression/CMakeLists.txt
Roland Conybeare 6b62647b3b git subrepo clone (merge) git@github.com:Rconybea/xo-pyexpression.git xo-pyexpression
subrepo:
  subdir:   "xo-pyexpression"
  merged:   "be4929de"
upstream:
  origin:   "git@github.com:Rconybea/xo-pyexpression.git"
  branch:   "main"
  commit:   "be4929de"
git-subrepo:
  version:  "0.4.9"
  origin:   "???"
  commit:   "???"
2026-06-06 22:34:33 -04:00

28 lines
706 B
CMake

# xo-pyexpression/CMakeLists.txt
cmake_minimum_required(VERSION 3.10)
project(xo_pyexpression 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/pyexpression)
#add_subdirectory(utest)
# ----------------------------------------------------------------
# provide find_package() support
xo_export_cmake_config(${PROJECT_NAME} ${PROJECT_VERSION} ${PROJECT_NAME}Targets)
# end CMakeLists.txt