updated the build_analyzer.py script on OSX, so that it now uses the AnalyzerSDK directory, and no longer assumes the AnalyzerSDK files are an extra directory above.

This commit is contained in:
Marcus10110 2016-10-03 15:21:50 -07:00
parent 47c4ac25f9
commit f634e1abc8
1 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,8 @@ cpp_files = glob.glob( "*.cpp" );
os.chdir( ".." ) os.chdir( ".." )
#specify the search paths/dependencies/options for gcc #specify the search paths/dependencies/options for gcc
include_paths = [ "../include" ] include_paths = [ "./AnalyzerSDK/include" ]
link_paths = [ "../lib" ] link_paths = [ "./AnalyzerSDK/lib" ]
link_dependencies = [ "-lAnalyzer" ] #refers to libAnalyzer.dylib or libAnalyzer.so link_dependencies = [ "-lAnalyzer" ] #refers to libAnalyzer.dylib or libAnalyzer.so
debug_compile_flags = "-O0 -w -c -fpic -g" debug_compile_flags = "-O0 -w -c -fpic -g"