Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,5 @@ jobs:
- name: Build
run: make build

- name: Run main
run: make run

- name: Test
run: make test
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ include(GoogleTest)

enable_testing()

add_executable(main main.cpp)

file(GLOB tests test_*.cpp)
foreach(test ${tests})
get_filename_component(name ${test} NAME_WE)
Expand Down
4 changes: 0 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@ build:
cmake -B ${BUILDDIR} .
cmake --build ${BUILDDIR}

.PHONY: run
run:
cd ${BUILDDIR} && ./main

.PHONY: test
test:
ctest --output-on-failure --test-dir ${BUILDDIR}
Expand Down
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,6 @@ handle all dependencies automatically.
make build
```

### Run main

```console
make run
```

### Run tests

```console
Expand Down
8 changes: 0 additions & 8 deletions main.cpp

This file was deleted.