Skip to content

Commit b0c6d4a

Browse files
committed
Less compilation on non-win32 systems
1 parent 35413b2 commit b0c6d4a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

create-project.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ echo -e "\x1B[32mCopiling with ${cpus} compute jobs!\033[0m"
117117
find_visual_studio_directory
118118
create_folders "${prjname}"
119119
generate_files "${prjname}"
120-
compile "${prjname}" "$2"
120+
if [ "$3" == "" ]; then
121+
compile "${prjname}" "$2"
122+
fi
121123

122124
echo -e "\x1B[32mFramework and project successfully installed! \033[0m"

0 commit comments

Comments
 (0)