Sean Kelly

Results 3 comments of Sean Kelly

My understanding is that this is what the `bindirs` instruction is for in premake. Is this not the case? Like because of the `$(EXE_PATHS)` param in the generated build instruction,...

Makefile: ``` all: $(PROJECTS) app: proj-test proj-test: ifneq (,$(proj_test_config)) @echo "==== Building proj-test ($(proj_test_config)) ====" @${MAKE} --no-print-directory -C . -f proj-test.make config=$(proj_test_config) endif ``` proj-test.make: ``` ALL_CPPFLAGS += $(CPPFLAGS) -MMD...

Then shouldn't the `$(EXE_PATHS)` bit be missing from the build rules involving `$(CXX)`? Ultimately, the issue here is the inconsistency in path handling between the compile and link steps.