Skip to content

Commit dafbe03

Browse files
authored
dependencies on external projects
1 parent abfdf7b commit dafbe03

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Tip_Cmake_gcc.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,17 @@ $ nm libvtkCommonDataModel-9.1.so
4747
- Test test_mpi.c from FindMPI folder
4848
- MKL library was not found from linking
4949
- Added -DCMAKE_CXX_FLAGS="-L${MKLROOT}/lib/intel64" resolved the isue
50+
51+
## Order of external project build
52+
- Adding dependencies on external projects
53+
```
54+
ExternalProject_Add(
55+
AAA_PROJECT
56+
...
57+
)
58+
ExternalProject_Add(
59+
BBB_PROJECT
60+
DEPENDS AAA_PROJECT
61+
...
62+
)
63+
```

0 commit comments

Comments
 (0)