File tree 3 files changed +3
-2
lines changed
3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ install(DIRECTORY "${boost_lib_dir}" DESTINATION "${CMAKE_INSTALL_PREFIX}")
90
90
91
91
set (CMAKE_INSTALL_RPATH "${CMAKE_INSTALL_PREFIX} /lib" )
92
92
SET (CMAKE_INSTALL_RPATH_USE_LINK_PATH TRUE )
93
+ set (yarn_mutex_file ${CMAKE_CURRENT_SOURCE_DIR} /.yarn-mutex)
93
94
94
95
add_subdirectory (cbmc)
95
96
Original file line number Diff line number Diff line change @@ -14,6 +14,6 @@ add_custom_command(
14
14
OUTPUT ${javascript_files}
15
15
DEPENDS ${typescript_files} ;package.json
16
16
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
17
- COMMAND yarn install
17
+ COMMAND yarn install --mutex file: ${yarn_mutex_file}
18
18
COMMAND yarn run build
19
19
)
Original file line number Diff line number Diff line change @@ -13,6 +13,6 @@ add_custom_command(
13
13
OUTPUT ${javascript_files}
14
14
DEPENDS ${typescript_files} ;package.json
15
15
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
16
- COMMAND yarn install
16
+ COMMAND yarn install --mutex file: ${yarn_mutex_file}
17
17
COMMAND yarn run build
18
18
)
You can’t perform that action at this time.
0 commit comments