annotate vec.pc.in @ 23:e26874655738

*: huge refactor, new major release (hahaha) I keep finding things that are broken... The problem NOW was that vec would unintentionally build some functions with extended instruction sets, which is Bad and would mean that for all intents and purposes the CPU detection was completely broken. Now vec is no longer header only either. Boohoo. However this gives a lot more flexibility to vec since we no longer want or need to care about C++ crap. The NEON and Altivec implementations have not been updated which means they won't compile hence why they're commented out in the cmake build file.
author Paper <paper@tflc.us>
date Sun, 24 Nov 2024 02:52:40 -0500
parents 9da2aba90c87
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
1 prefix=@CMAKE_INSTALL_PREFIX@
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
2 exec_prefix=@CMAKE_INSTALL_PREFIX@
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
3 libdir=${exec_prefix}/@CMAKE_INSTALL_LIBDIR@
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
4 includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
5
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
6 Name: @PROJECT_NAME@
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
7 Description: @PROJECT_DESCRIPTION@
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
8 Version: @PROJECT_VERSION@
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
9
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
10 Requires:
6e0eb3aa12ab build: add files to build vec as an external library
Paper <paper@tflc.us>
parents:
diff changeset
11 Libs: -L${libdir} -lvec
16
9da2aba90c87 pkgconfig: -DVEC_EXTERN is no longer required
Paper <paper@tflc.us>
parents: 8
diff changeset
12 Cflags: -I${includedir}