mirror of
https://github.com/AfonsoCMSousa/Thread-Master.git
synced 2026-05-14 01:38:38 +01:00
- Added check for thread worker in thread_master_init to provide informative error message. - Updated main function to properly assign jobs to the thread worker. - Modified build script to create a bin directory if it doesn't exist.
7 lines
105 B
Bash
Executable File
7 lines
105 B
Bash
Executable File
# This script builds the project
|
|
mkdir -p build
|
|
mkdir -p bin
|
|
cd ./build
|
|
cmake ..
|
|
make
|
|
cp "example" ../bin |