* Feature: Obtain a building executable on MacOS, but need to resolve the crashing issues and multi-configuration settings.

This commit is contained in:
Robert MacGregor 2022-05-17 13:14:00 -04:00
parent d7cdf54661
commit 786dac7419
3 changed files with 229 additions and 103 deletions

View file

@ -21,3 +21,4 @@ add_subdirectory(pcre ${CMAKE_BINARY_DIR}/temp/pcre EXCLUDE_FROM_ALL)
add_subdirectory(convexDecomp ${CMAKE_BINARY_DIR}/temp/convexDecomp EXCLUDE_FROM_ALL)
add_subdirectory(squish ${CMAKE_BINARY_DIR}/temp/squish EXCLUDE_FROM_ALL)
add_subdirectory(collada ${CMAKE_BINARY_DIR}/temp/collada EXCLUDE_FROM_ALL)
add_subdirectory(glad ${CMAKE_BINARY_DIR}/temp/glad EXCLUDE_FROM_ALL)

View file

@ -1,4 +1,4 @@
file(GLOB PCRE_SOURCES "*.c")
file(GLOB PCRE_SOURCES "*.c" "*.cc")
add_library(pcre STATIC ${PCRE_SOURCES})
target_compile_definitions(pcre PUBLIC PCRE_STATIC HAVE_CONFIG_H)