Displaying 5 results from an estimated 5 matches for "cmakescript".
2012 Jun 13
2
[LLVMdev] [cfe-dev] Ninja build available for Visual Studio users
...Rigth now Ninja/VS support is activated on a cmake experimental build,
> with strong possibilities of making its way into the next official
> release. For now, you need to build the patched cmake+ninja yourselves
> or download the executables from
>
> http://sourceforge.net/projects/cmakescript/files/
>
> Download and install cmake-Ninja-2.8.8.*-win32-x86.exe, then download
> ninja.exe to the `bin' subdirectory of the place where you installed
> cmake. Then proceed to build LLVM:
>
> mkdir myLLVMbuildWithNinja
> cd myLLVMbuildWithNinja
> cmake -G Ninja -DCMAKE_...
2012 Jun 13
0
[LLVMdev] [cfe-dev] Ninja build available for Visual Studio users
...support is activated on a cmake experimental build,
>> with strong possibilities of making its way into the next official
>> release. For now, you need to build the patched cmake+ninja yourselves
>> or download the executables from
>>
>> http://sourceforge.net/projects/cmakescript/files/
>>
>> Download and install cmake-Ninja-2.8.8.*-win32-x86.exe, then download
>> ninja.exe to the `bin' subdirectory of the place where you installed
>> cmake. Then proceed to build LLVM:
>>
>> mkdir myLLVMbuildWithNinja
>> cd myLLVMbuildWithNinja...
2012 Jun 13
0
[LLVMdev] Ninja build available for Visual Studio users
...ess
than half a second.
Rigth now Ninja/VS support is activated on a cmake experimental build,
with strong possibilities of making its way into the next official
release. For now, you need to build the patched cmake+ninja yourselves
or download the executables from
http://sourceforge.net/projects/cmakescript/files/
Download and install cmake-Ninja-2.8.8.*-win32-x86.exe, then download
ninja.exe to the `bin' subdirectory of the place where you installed
cmake. Then proceed to build LLVM:
mkdir myLLVMbuildWithNinja
cd myLLVMbuildWithNinja
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release path/to/llvm/source...
2012 Jun 17
3
[LLVMdev] Ninja (make replacement)
...duced it formally.
Ninja is, briefly put, a super-fast replacement for GNU Make, nmake, and
all the other make tools out there.
For those of you who are a bit reluctant to waste time on Ninja or don't
know what it is, I can strongly urge you to download it from
http://sourceforge.net/projects/cmakescript/files/ together with a
Ninja-enabled version of CMake from the same URL. It takes you perhaps 5
minutes, and you are going to earn them back hundreds and thousands of
times over the coming years.
My Clang build used to take 59:29 minutes using MinGW Makefiles. With
Ninja, it takes 18:43 minutes!...
2017 May 29
0
[PATCH] Add CMake build script
...ake/SpeexConfig.cmake
create mode 100644 cmake/TestVarArrays.cmake
create mode 100644 config.h.cmake
diff --git a/.gitignore b/.gitignore
index 7c30999..99a35e5 100644
--- a/.gitignore
+++ b/.gitignore
@@ -43,3 +43,13 @@ src/speexdec
src/speexenc
stamp-*
patches
+
+CMakeCache.txt
+CMakeFiles
+CMakeScripts
+Testing
+Makefile
+cmake_install.cmake
+install_manifest.txt
+compile_commands.json
+CTestTestfile.cmake
diff --git a/.travis.yml b/.travis.yml
index ff85bc3..2bc028b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,25 @@
language: c
+sudo: false
+dist: trusty
+addons:
+ apt:
+ package...