aboutsummaryrefslogtreecommitdiff
path: root/src/CMakeLists.txt
blob: d7ae94e1efc11c5be0e159b81d6c8a07730cb247 (plain)
1
2
3
4
5
6
7
8
9
10
set (CMAKE_C_FLAGS -Wall)

configure_file (${CMAKE_CURRENT_SOURCE_DIR}/config.h.in
	${CMAKE_CURRENT_BINARY_DIR}/config.h)

include_directories (${CMAKE_CURRENT_SOURCE_DIR}/..)

add_executable (mpiosh mpiosh.c callback.c readline.c command.c global.c
	cfgio.c cfg.c)
target_link_libraries (mpiosh mpio ${LIBNCURSES} ${LIBREADLINE})