Can you help with compiling libtins
library using CPM?
#545
Replies: 1 comment
-
The error is generated from a call to You can build winflex separately before proceeding with your project. Alternatively, you can add an CPMAddPackage(
NAME winflexbison
...
)
execute_process( <configure winflex project> )
execute_process( <build_command> )
CPMAddPackage(
NAME libpcap
...
) In either case, you may have to tell cmake where it can find the executable. This may further assist you or guide you on the right track: StackOverflow link (it uses ExternalProject_Add with a helper subproject, but essentially is the same thing). Hope I could help at least a little. 😄 |
Beta Was this translation helpful? Give feedback.
-
I'm trying to use CPM to compile the
libtins
library as a dependency for my application. The following is what I wrote, but it keeps failing, the OS is Windows 11.Beta Was this translation helpful? Give feedback.
All reactions