mirror of
				https://github.com/notepad-plus-plus/notepad-plus-plus.git
				synced 2025-11-04 05:23:56 +01:00 
			
		
		
		
	Dynamically collects all the version info needed and creates NppLibsVersion.h file by the help of a pre-build event. Fix https://community.notepad-plus-plus.org/topic/21513/determining-supporting-library-versions Fix #11466, close #16318
		
			
				
	
	
		
			27 lines
		
	
	
		
			894 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			894 B
		
	
	
	
		
			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
 | 
						|
 | 
						|
 | 
						|
SRC_OBJS=\
 | 
						|
	$(SRC_OBJS)\
 | 
						|
	$(DIR_O)\BoostRegexSearch.obj\
 | 
						|
	$(DIR_O)\UTF8DocumentIterator.obj
 | 
						|
 | 
						|
INCLUDES=$(INCLUDES) -I../../boostregex
 | 
						|
 | 
						|
CXXFLAGS=$(CXXFLAGS) -DSCI_OWNREGEX -DBOOST_REGEX_STANDALONE
 | 
						|
 | 
						|
 | 
						|
$(DIR_O)\UTF8DocumentIterator.obj:: ../../boostregex/UTF8DocumentIterator.cxx
 | 
						|
	$(CXX) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c -Fo$@ %s
 | 
						|
 | 
						|
$(DIR_O)\BoostRegexSearch.obj:: ../../boostregex/BoostRegexSearch.cxx ../src/CharClassify.h ../src/RESearch.h
 | 
						|
	$(CXX) $(CXXFLAGS) -D_SILENCE_ALL_CXX17_DEPRECATION_WARNINGS -c -Fo$@ %s
 | 
						|
 |