subrepo: subdir: "xo-object" merged: "d830632a" upstream: origin: "git@github.com:Rconybea/xo-object.git" branch: "main" commit: "d830632a" git-subrepo: version: "0.4.9" origin: "???" commit: "???"
12 lines
297 B
CMake
12 lines
297 B
CMake
# xo-object/example/ex1/CMakeLists.txt
|
|
|
|
set(SELF_EXE xo_object_ex1)
|
|
set(SELF_SRCS ex1.cpp)
|
|
|
|
if (XO_ENABLE_EXAMPLES)
|
|
xo_add_executable(${SELF_EXE} ${SELF_SRCS})
|
|
xo_self_headeronly_dependency(${SELF_EXE} xo_reflect)
|
|
xo_dependency(${SELF_EXE} xo_flatstring)
|
|
endif()
|
|
|
|
# end CMakeLists.txt
|