diff --git a/.gitignore b/.gitignore index 2e6107ad3..cb2326b04 100644 --- a/.gitignore +++ b/.gitignore @@ -79,4 +79,3 @@ stxxl.errlog /sandbox/ /test/profile.lua -/profile.lua diff --git a/Rakefile b/Rakefile index ccbb0cb9a..6472e9021 100644 --- a/Rakefile +++ b/Rakefile @@ -82,8 +82,12 @@ task :default => [:build] desc "Build using CMake." task :build do - Dir.chdir BUILD_FOLDER do - system "make" + if Dir.exists? BUILD_FOLDER + Dir.chdir BUILD_FOLDER do + system "make" + end + else + system "mkdir build; cd build; cmake ..; make" end end diff --git a/config/cucumber.yml b/config/cucumber.yml index 5a9fa4eaa..1847f0198 100644 --- a/config/cucumber.yml +++ b/config/cucumber.yml @@ -1,5 +1,5 @@ # config/cucumber.yml ##YAML Template --- -default: --require features +default: --require features --tags ~@todo --tag ~@stress verify: --require features --tags ~@todo --tag ~@stress -f progress \ No newline at end of file diff --git a/profile.lua b/profile.lua new file mode 120000 index 000000000..bad7e6bb5 --- /dev/null +++ b/profile.lua @@ -0,0 +1 @@ +profiles/car.lua \ No newline at end of file