Skip to content

Commit 7589f97

Browse files
committed
rename pkgconfig --> variables
1 parent 1aa7b96 commit 7589f97

File tree

3 files changed

+4
-12
lines changed

3 files changed

+4
-12
lines changed
Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CMake integration
1+
name: Downstream integration
22

33
on:
44
push:
@@ -69,12 +69,4 @@ jobs:
6969
cmake --preset release -GNinja -S neml2-src -B neml2-build
7070
cmake --build neml2-build
7171
cmake --install neml2-build --prefix neml2-install --component libneml2
72-
- name: Create an example CMake project
73-
run: |
74-
cp neml2-src/cmake/gnumake/main.cxx .
75-
cp neml2-src/cmake/gnumake/Makefile.txt .
76-
- name: Configure with CMake
77-
run: cmake -GNinja -Dneml2_ROOT=neml2-install -B build -S .
78-
- name: Compile
79-
run: cmake --build build
80-
- run: ./build/foo
72+
- name: Create an example project using

src/tools/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ add_tool(run)
4242
add_tool(inspect)
4343
add_tool(time)
4444
add_tool(syntax)
45-
add_tool(pkgconfig)
45+
add_tool(variables)
4646

4747
# ------------------------------------------------------------------------------
4848
# benchmarks
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
int
3232
main(int argc, char * argv[])
3333
{
34-
argparse::ArgumentParser program("pkgconfig");
34+
argparse::ArgumentParser program("variables");
3535
program.add_description("Query build and install metadata for integrating NEML2 from makefiles.");
3636

3737
auto & query = program.add_mutually_exclusive_group(true);

0 commit comments

Comments
 (0)