I have a project that mainly uses CMake.
However, there is a subdirectory from a third-party / old library. It has a Makefile that will be compiled into the 3rd_party.a library file.
Can my own CMakeLists.txt manage the call to this Makefile, generate its 3rd_party.a library and give a link to my code? I do not want to adapt my old Makefile to CMakeLists.txt
├── my_source_folder_1 ├── my_source_folder_2 ├── CMakeLists.txt ├── 3rd_party │ ├── 3rd_party_source │ ├── 3rd_party_make │ | ├── Makefile
Thanks!
source share