Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build_analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@
for link_path in link_paths:
command += "-L\"" + link_path + "\" "

#add libraries to link against
for link_dependency in link_dependencies:
command += link_dependency + " "

#make a dynamic (shared) library (.so/.dylib)

if dylib_ext == ".dylib":
Expand All @@ -110,6 +106,10 @@
for cpp_file in cpp_files:
release_command += "release/" + cpp_file.replace( ".cpp", ".o" ) + " "
debug_command += "debug/" + cpp_file.replace( ".cpp", ".o" ) + " "

#add libraries to link against
for link_dependency in link_dependencies:
command += link_dependency + " "

#run the commands from the command line
print release_command
Expand Down