2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 13:44:56 +00:00

Add .gitlab-ci.yml

This commit is contained in:
Jack Andersen
2017-12-30 16:44:18 -10:00
parent f8181f7598
commit b5c79d0e75
13 changed files with 138 additions and 20 deletions

View File

@@ -3,6 +3,9 @@ if(NOT CMAKE_CROSSCOMPILING)
include_directories(${LIBPNG_INCLUDE_DIR} ${ZLIB_INCLUDE_DIR})
add_executable(packbadge packbadge.c)
find_library(M_LIB m)
if(NOT M_LIB)
unset(M_LIB CACHE)
endif()
target_link_libraries(packbadge ${PNG_LIB} ${ZLIB_LIBRARIES} ${M_LIB})
##################