mirror of
https://github.com/neovim/neovim.git
synced 2025-01-01 17:23:36 -07:00
67535b5940
Note: the test fails on non-Windows CI (Travis linux, Quickbuild bsd): even on master before the env.c changes in this patch-series. Maybe the unix part of printenv-test.c needs to be revisited. Signed-off-by: Justin M. Keyes <justinkz@gmail.com>
10 lines
311 B
CMake
10 lines
311 B
CMake
add_executable(tty-test tty-test.c)
|
|
target_link_libraries(tty-test ${LIBUV_LIBRARIES})
|
|
|
|
add_executable(shell-test shell-test.c)
|
|
add_executable(printargs-test printargs-test.c)
|
|
add_executable(printenv-test printenv-test.c)
|
|
if(WIN32)
|
|
set_target_properties(printenv-test PROPERTIES LINK_FLAGS -municode)
|
|
endif()
|