blob: 03604135a5dfc69fc9aae40d2991b64c8be9f181 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
set(SRC_COMMON utils.c)
# configure a header file to pass some of the CMake settings
# to the source code
configure_file (
"usi2011jjl.h.in"
"${PROJECT_BINARY_DIR}/usi2011jjl.h"
)
add_executable(usi2011jjl main.c tcpserver.c dispatcher.c ${SRC_COMMON} )
#target_link_libraries(usi2011jjl SDL SDL_net SDL_image)
|