| 1234567891011121314151617181920212223242526272829303132333435 |
- set(LIBRARY_NAME error_code)
- unset(OPTION_ENABLE_TEST_CODE CACHE)
- option(OPTION_ENABLE_TEST_CODE "Whether enable test code." OFF)
- message("<=${LIBRARY_NAME}=> OPTION_ENABLE_TEST_CODE: " ${OPTION_ENABLE_TEST_CODE})
- unset(OPTION_ERROR_CODE_DESCRIPTE CACHE)
- option(OPTION_ERROR_CODE_DESCRIPTE "Whether enable error code description." OFF)
- message("<=${LIBRARY_NAME}=> OPTION_ERROR_CODE_DESCRIPTE: " ${OPTION_ERROR_CODE_DESCRIPTE})
- if (OPTION_ERROR_CODE_DESCRIPTE)
- add_definitions(-DOPTION_ERROR_CODE_DESCRIPTE=1)
- else ()
- add_definitions(-DOPTION_ERROR_CODE_DESCRIPTE=0)
- endif ()
- set(LIBRARY_SOURCE_LIST
- ${CMAKE_CURRENT_LIST_DIR}/error_code.hpp
- ${CMAKE_CURRENT_LIST_DIR}/error_code.cpp
- )
- set(LIBRARY_DEPEND_LIST)
- add_library(${LIBRARY_NAME} ${LIBRARY_SOURCE_LIST})
- target_link_libraries(${LIBRARY_NAME} PUBLIC ${LIBRARY_DEPEND_LIST})
- if (OPTION_ENABLE_TEST_CODE)
- set(LIBRARY_TEST_NAME "${LIBRARY_NAME}_test")
- set(LIBRARY_TEST_SOURCE_LIST
- ${CMAKE_CURRENT_LIST_DIR}/test.h
- ${CMAKE_CURRENT_LIST_DIR}/test.cpp
- )
- add_executable(${LIBRARY_TEST_NAME} ${LIBRARY_TEST_SOURCE_LIST})
- target_link_libraries(${LIBRARY_TEST_NAME} ${LIBRARY_NAME} )
- endif ()
|