From be73cd5c9b6887c1c937fca2531bff8da46a10c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Morn=C3=A9=20Chamberlain?= Date: Tue, 17 Apr 2012 14:35:48 +0200 Subject: [PATCH] Added codeblocks build file support (for Qt Creator actually) to rez-cmake (-b codeblocks). --- bin/rez-cmake | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/bin/rez-cmake b/bin/rez-cmake index cddda179b..76bf4b9b3 100755 --- a/bin/rez-cmake +++ b/bin/rez-cmake @@ -131,6 +131,12 @@ case $build_system in exit 1 fi ;; + codeblocks) + cmake -G "CodeBlocks - Unix Makefiles" $cmake_arguments + if [ $? -ne 0 ]; then + exit 1 + fi + ;; make) cmake -G "Unix Makefiles" $cmake_arguments if [ $? -ne 0 ]; then