Skip to content

Commit

Permalink
run cmake --build instead of make
Browse files Browse the repository at this point in the history
The former is cross-platform equivalent.
Should fix failure in Windows:
https://ci.appveyor.com/project/mpeterv/hererocks/build/1.0.179/job/q34tijuxavqlellj
  • Loading branch information
starius committed Oct 15, 2016
1 parent 68476f8 commit 514f843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hererocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1442,7 +1442,7 @@ def make(self):
os.mkdir("build")
os.chdir("build")
run("cmake", "-DCMAKE_BUILD_TYPE=Release", "..")
run("make")
run("cmake", "-DCMAKE_BUILD_TYPE=Release", "--build", ".")
os.chdir("..")

def make_install(self):
Expand Down

0 comments on commit 514f843

Please sign in to comment.