2 Commits

Author SHA1 Message Date
00db3de911 Add dir for popt library 2021-10-05 23:30:46 -04:00
49b62ee7bd MacOS compatibility 2021-10-05 23:30:32 -04:00
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@@ -8,6 +8,7 @@ cmake_install.cmake
config.h
install_manifest.txt
mazemaker
*.dylib
*.tar.gz
*.png
*.pc

View File

@@ -4,6 +4,7 @@ pkg_search_module(POPT REQUIRED popt)
include_directories("../include" ${POPT_INCLUDE_DIRS})
add_executable(mazemaker mazemaker.c)
target_link_directories(mazemaker PUBLIC ${POPT_LIBRARY_DIRS})
target_link_libraries(mazemaker mazemaker_shared ${POPT_LIBRARIES})
install (TARGETS mazemaker DESTINATION bin)