Separate private and public interfaces

This is a common pattern that I've seen that helps convey what is
supposed to be public and what is internal and not to be used directly.
This commit is contained in:
Matthew Johnston 2021-08-05 22:53:23 -05:00
parent b8fa8fdcac
commit 842c7b66fc
2 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ if(WIN32 AND NOT WINDOWS)
set(WINDOWS TRUE)
endif()
include_directories(./src)
include_directories(include)
if(APPLE)
set(OTHER_LDFLAGS ${OTHER_LDFLAGS} "-framework IOKit -framework Foundation")