subrepo: subdir: "xo-reader" merged: "cb652195" upstream: origin: "git@github.com:Rconybea/xo-reader.git" branch: "main" commit: "cb652195" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
11 lines
255 B
CMake
11 lines
255 B
CMake
# xo-reader/example/exprrepl/CMakeLists.txt
|
|
|
|
set(SELF_EXE xo_expression_repl)
|
|
set(SELF_SRCS exprrepl.cpp)
|
|
|
|
if (XO_ENABLE_EXAMPLES)
|
|
xo_add_executable(${SELF_EXE} ${SELF_SRCS})
|
|
xo_self_dependency(${SELF_EXE} xo_reader)
|
|
endif()
|
|
|
|
# end CMakeLists.txt
|