blob: befe1706758e17a1b0658ce2fc31df50b13807c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
set ( sources listxtp.c )
if (WIN32)
set ( sources
${sources}
dirent.c)
include_directories( before ${CMAKE_CURRENT_SOURCE_DIR})
endif ()
add_executable( listxtp ${sources})
add_subdirectory(halibut)
|