diff options
author | Stijn Buys <ingar@osirion.org> | 2012-09-30 11:43:02 +0000 |
---|---|---|
committer | Stijn Buys <ingar@osirion.org> | 2012-09-30 11:43:02 +0000 |
commit | 4a529901ad6ce3d4d4c53b68dde56f8b698661a8 (patch) | |
tree | f4677c0fa647d9291cf5b4b104a671cbb6825106 | |
parent | ad9d3c84554e7db4deaabe352d6f53e2da9c7828 (diff) |
Renamed the resulting binary to 'sudoku'.
-rw-r--r-- | src/Makefile.am | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 2e1bae4..88b0054 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,8 +1,7 @@ -bin_PROGRAMS = sudokusolver +bin_PROGRAMS = sudoku -# You have two .cpp files you wrote, editor.cpp and another.cpp -# Remember to include the name of the resource file with the .cpp extension. -sudokusolver_SOURCES = \ +# Project C++ source files +sudoku_SOURCES = \ cell.cc \ main.cc \ mainwindow.cc \ @@ -10,9 +9,8 @@ sudokusolver_SOURCES = \ sudoku.cc \ sudokuwidget.cc -# You have one .h file, it's called editor.h. Therefore, here I list -# its mocced name, moc_editor.cpp. -nodist_sudokusolver_SOURCES = \ +# moc generated C++ source files +nodist_sudoku_SOURCES = \ moc_mainwindow.cc \ moc_solverwindow.cc \ moc_sudokuwidget.cc |