mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-10-30 19:14:05 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # This makefile should be included in the main scintilla.mak file,
 | |
| # just after where LOBJS is defined (around line 
 | |
| # 
 | |
| # The following line should be added around line 211 of scintilla.mak
 | |
| # !INCLUDE nppSpecifics.mak
 | |
| 
 | |
| # Set your boost path (the root of where you've unpacked your boost zip).
 | |
| # Boost is available from www.boost.org
 | |
| 
 | |
| !IFDEF BOOSTPATH
 | |
| !IFDEF BOOSTREGEXLIBPATH
 | |
| 
 | |
| SOBJS=\
 | |
| 	$(SOBJS)\
 | |
| 	$(DIR_O)\BoostRegexSearch.obj\
 | |
| 	$(DIR_O)\UTF8DocumentIterator.obj
 | |
| 
 | |
| SCILEXOBJS=\
 | |
| 	$(SCILEXOBJS)\
 | |
| 	$(DIR_O)\BoostRegexSearch.obj\
 | |
| 	$(DIR_O)\UTF8DocumentIterator.obj
 | |
| 	
 | |
| LOBJS=\
 | |
| 	$(LOBJS)\
 | |
| 	$(DIR_O)\BoostRegexSearch.obj\
 | |
| 	$(DIR_O)\UTF8DocumentIterator.obj
 | |
| 
 | |
| INCLUDEDIRS=$(INCLUDEDIRS) -I$(BOOSTPATH)
 | |
| 
 | |
| CXXFLAGS=$(CXXFLAGS) -DSCI_OWNREGEX
 | |
| LDFLAGS=$(LDFLAGS) -LIBPATH:$(BOOSTREGEXLIBPATH)
 | |
| 
 | |
| 
 | |
| $(DIR_O)\UTF8DocumentIterator.obj:: ../boostregex/UTF8DocumentIterator.cxx
 | |
| 	$(CC) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c ../boostregex/UTF8DocumentIterator.cxx	
 | |
| 	
 | |
| $(DIR_O)\BoostRegexSearch.obj:: ../boostregex/BoostRegexSearch.cxx ../src/CharClassify.h ../src/RESearch.h	
 | |
| 	$(CC) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c ../boostregex/BoostRegexSearch.cxx
 | |
| 
 | |
| !ENDIF
 | |
| !ENDIF
 | |
| 
 |