Renamed project
This commit is contained in:
parent
73110c9406
commit
61468c2e79
21 changed files with 7 additions and 7 deletions
|
@ -10,5 +10,5 @@ Usage
|
||||||
2. Create a D CMake Project: project(project-name D)
|
2. Create a D CMake Project: project(project-name D)
|
||||||
3. Run cmake as usual specifing the cmake-d path. To cache it, don't forget to specify the *:PATH* variable type.<br/>
|
3. Run cmake as usual specifing the cmake-d path. To cache it, don't forget to specify the *:PATH* variable type.<br/>
|
||||||
```
|
```
|
||||||
cmake -DCMAKE_MODULE_PATH:PATH=<cmake-d-dir> <path-to-source>
|
cmake -DCMAKE_MODULE_PATH:PATH=<cmake-d-dir>/cmake-d <path-to-source>
|
||||||
```
|
```
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
# See Copyright.txt for details.
|
# See Copyright.txt for details.
|
||||||
#
|
#
|
||||||
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.1)
|
CMAKE_MINIMUM_REQUIRED(VERSION 2.8.1)
|
||||||
PROJECT (cmaked NONE)
|
PROJECT (cmake-d NONE)
|
||||||
|
|
||||||
SET (MOD_SRCS
|
SET (MOD_SRCS
|
||||||
CMakeDCompiler.cmake.in
|
CMakeDCompiler.cmake.in
|
|
@ -6,13 +6,13 @@
|
||||||
# and builds the tests there.
|
# and builds the tests there.
|
||||||
#
|
#
|
||||||
cd ../..
|
cd ../..
|
||||||
rm -rf cmaked_test_build
|
rm -rf cmake-d-test-build
|
||||||
mkdir -p cmaked_test_build
|
mkdir -p cmake-d-test-build
|
||||||
cd cmaked_test_build
|
cd cmake-d-test-build
|
||||||
mkdir -p release
|
mkdir -p release
|
||||||
cd release
|
cd release
|
||||||
# Do a release build
|
# Do a release build
|
||||||
cmake ../../cmaked2/tests
|
cmake ../../cmake-d/tests
|
||||||
make
|
make
|
||||||
make test
|
make test
|
||||||
cd ..
|
cd ..
|
||||||
|
@ -20,7 +20,7 @@ cd ..
|
||||||
# Do a debug build
|
# Do a debug build
|
||||||
mkdir -p debug
|
mkdir -p debug
|
||||||
cd debug
|
cd debug
|
||||||
cmake -DCMAKE_VERBOSE_MAKEFILE=1 -DCMAKE_BUILD_TYPE=debug ../../cmaked2/tests
|
cmake -DCMAKE_VERBOSE_MAKEFILE=1 -DCMAKE_BUILD_TYPE=debug ../../cmake-d/tests
|
||||||
make
|
make
|
||||||
make test
|
make test
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
Loading…
Add table
Reference in a new issue