Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Mateusz Czeladka authored and matiwinnetou committed Jun 23, 2017
1 parent 40d4f03 commit 2afa37e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build_system/config_macos.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,16 @@ def build_node_js(config):
#-----------------------------------------------------------------------
def build_j2v8_cmake(config):
return \
u.shell("mkdir", "cmake.out/$PLATFORM.$ARCH") + \
["cd cmake.out/$PLATFORM.$ARCH"] + \
u.shell("mkdir", "./cmake.out/$PLATFORM.$ARCH") + \
["cd ./cmake.out/$PLATFORM.$ARCH"] + \
u.shell("rm", "CMakeCache.txt CMakeFiles/") + \
["cmake ../../"]

macos_config.build_step(c.build_j2v8_cmake, build_j2v8_cmake)
#-----------------------------------------------------------------------
def build_j2v8_jni(config):
return [
"cd cmake.out/$PLATFORM.$ARCH",
"cd ./cmake.out/$PLATFORM.$ARCH",
"make -j4",
]

Expand Down

0 comments on commit 2afa37e

Please sign in to comment.