forked from github/server
add conversion program
This commit is contained in:
parent
6e27adb892
commit
67252e2924
|
@ -187,6 +187,15 @@ target_link_libraries(eressea
|
||||||
${INIPARSER_LIBRARIES}
|
${INIPARSER_LIBRARIES}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
add_executable(convert convert.c)
|
||||||
|
target_link_libraries(convert
|
||||||
|
game
|
||||||
|
${LUA_MATH_LIBRARY}
|
||||||
|
${STORAGE_LIBRARIES}
|
||||||
|
${CLIBS_LIBRARIES}
|
||||||
|
${INIPARSER_LIBRARIES}
|
||||||
|
)
|
||||||
|
|
||||||
set(TESTS_SRC
|
set(TESTS_SRC
|
||||||
monsters.test.c
|
monsters.test.c
|
||||||
names.test.c
|
names.test.c
|
||||||
|
@ -268,6 +277,7 @@ endif(CURSES_FOUND)
|
||||||
if (LIBXML2_FOUND)
|
if (LIBXML2_FOUND)
|
||||||
include_directories (${LIBXML2_INCLUDE_DIR})
|
include_directories (${LIBXML2_INCLUDE_DIR})
|
||||||
target_link_libraries(eressea ${LIBXML2_LIBRARIES})
|
target_link_libraries(eressea ${LIBXML2_LIBRARIES})
|
||||||
|
target_link_libraries(convert ${LIBXML2_LIBRARIES})
|
||||||
target_link_libraries(test_eressea ${LIBXML2_LIBRARIES})
|
target_link_libraries(test_eressea ${LIBXML2_LIBRARIES})
|
||||||
add_definitions(-DUSE_LIBXML2)
|
add_definitions(-DUSE_LIBXML2)
|
||||||
endif (LIBXML2_FOUND)
|
endif (LIBXML2_FOUND)
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
int main(void) {
|
||||||
|
return -1;
|
||||||
|
}
|
Loading…
Reference in New Issue