¡@

Home 

c++ Programming Glossary: sub3

Handling header files dependencies with cmake

http://stackoverflow.com/questions/7461000/handling-header-files-dependencies-with-cmake

sub1 add_subdirectory sub2 add_subdirectory sub3 add_subdirectory sub4 add_executable foo main.cpp target_link_libraries.. foo main.cpp target_link_libraries foo sub1 sub2 sub3 sub4 Where sub4 depends on sub3 which depends on sub2 which.. foo sub1 sub2 sub3 sub4 Where sub4 depends on sub3 which depends on sub2 which depends on sub1 And an example of..