8 lines
216 B
CMake
8 lines
216 B
CMake
set(SELF_EXE indentlog_ex1)
|
|
set(SELF_SRCS ex1.cpp)
|
|
|
|
if (XO_ENABLE_EXAMPLES)
|
|
add_executable(${SELF_EXE} ${SELF_SRCS})
|
|
xo_include_options2(indentlog_ex1)
|
|
xo_self_dependency(indentlog_ex1 indentlog)
|
|
endif()
|