This commit is contained in:
2021-04-15 18:01:55 -04:00
parent 61d7ba6436
commit 74aa5e851b
2 changed files with 5 additions and 3 deletions

1
.gitignore vendored
View File

@@ -8,3 +8,4 @@ cmake_install.cmake
config.h config.h
install_manifest.txt install_manifest.txt
mazemaker mazemaker
*.tar.gz

View File

@@ -23,7 +23,7 @@ install (TARGETS mazemaker DESTINATION bin)
target_link_libraries(mazemaker PUBLIC ${POPT_LIBRARIES}) target_link_libraries(mazemaker PUBLIC ${POPT_LIBRARIES})
target_include_directories(mazemaker PUBLIC ${POPT_INCLUDE_DIRS}) target_include_directories(mazemaker PUBLIC ${POPT_INCLUDE_DIRS})
target_compile_options(mazemaker PUBLIC ${POPT_CFLAGS_OTHER}) target_compile_options(mazemaker PUBLIC ${POPT_CFLAGS_OTHER})
target_link_options(mazemaker PUBLIC ${POPT_LDFLAGS_OTHER}) target_link_options(mazemaker PUBLIC -L${POPT_LIBDIR})
set( set(
CPACK_SOURCE_PACKAGE_FILE_NAME CPACK_SOURCE_PACKAGE_FILE_NAME
@@ -31,5 +31,6 @@ set(
CACHE INTERNAL "tarball basename" CACHE INTERNAL "tarball basename"
) )
set(CPACK_SOURCE_GENERATOR "TGZ") set(CPACK_SOURCE_GENERATOR "TGZ")
set(CPACK_SOURCE_IGNORE_FILES "/build/;/.git/;~$;/CMakeFiles/;*.cmake;*.tar.gz;${CPACK_SOURCE_IGNORE_FILES}") set(CPACK_SOURCE_IGNORE_FILES "/.git/;.gitignore;.tar.gz$;/Makefile;/CMakeCache.txt;/CMakeFiles/;cmake_install.cmake;install_manifest.txt;/_CPack;/mazemaker$;/config.h$;.cmake$;${CPACK_SOURCE_IGNORE_FILES}")
include (CPack) include(CPack)