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:
parent
47c4ac25f9
commit
f634e1abc8
|
@ -38,8 +38,8 @@ cpp_files = glob.glob( "*.cpp" );
|
|||
os.chdir( ".." )
|
||||
|
||||
#specify the search paths/dependencies/options for gcc
|
||||
include_paths = [ "../include" ]
|
||||
link_paths = [ "../lib" ]
|
||||
include_paths = [ "./AnalyzerSDK/include" ]
|
||||
link_paths = [ "./AnalyzerSDK/lib" ]
|
||||
link_dependencies = [ "-lAnalyzer" ] #refers to libAnalyzer.dylib or libAnalyzer.so
|
||||
|
||||
debug_compile_flags = "-O0 -w -c -fpic -g"
|
||||
|
|
Loading…
Reference in New Issue