picrin/tools/CMakeLists.txt

13 lines
392 B
CMake
Raw Normal View History

2014-03-26 01:08:39 -04:00
list(APPEND REPL_LIBRARIES picrin)
2014-03-02 00:34:02 -05:00
find_package(READLINE)
if (READLINE_FOUND)
include_directories(${READLINE_INCLUDE_DIRS})
add_definitions(${READLINE_DEFINITIONS} -DPIC_READLINE_FOUND=1)
2014-03-26 01:08:39 -04:00
list(APPEND REPL_LIBRARIES ${READLINE_LIBRARIES})
2014-03-02 00:34:02 -05:00
endif()
2014-03-01 11:52:41 -05:00
add_executable(repl tools/main.c)
set_target_properties(repl PROPERTIES OUTPUT_NAME picrin)
2014-03-26 01:08:39 -04:00
target_link_libraries(repl ${REPL_LIBRARIES})