Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default Xcode Project Does Not Compile under Xcode 9.4.1 #33

Open
TroikaTronix opened this issue Jul 11, 2020 · 0 comments
Open

Default Xcode Project Does Not Compile under Xcode 9.4.1 #33

TroikaTronix opened this issue Jul 11, 2020 · 0 comments

Comments

@TroikaTronix
Copy link

Attempting to compile Xcode project in Xcode 9.4.1 fails, as it does not find the header files for squish and snappy because the include files for squish and snappy are not copied to the $(BUILT_PRODUCTS_DIR).

#include <squish.h> (in squish-c.cpp) -- FAIL
#include <snappy-c.h> (in hap.c)) -- FAIL

The following changes to the include path allows the project to compile.

change
"$(BUILT_PRODUCTS_DIR)/include/snappy"
to
$(PROJECT_DIR)/external/snappy/snappy-mac/build/$(CONFIGURATION)/include/snappy

change
"$(BUILT_PRODUCTS_DIR)/include/squish"
to
$(PROJECT_DIR)/external/squish/build/$(CONFIGURATION)/include/squish

Am I missing something? Does this project require a new version of Xcode?

@TroikaTronix TroikaTronix changed the title Default Xcode Project Settings Do Not Compile Default Xcode Project Does Not Compile under Xcode 9.4.1 Jul 11, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant