Skip to content

Commit

Permalink
Initial build system works
Browse files Browse the repository at this point in the history
Meson
Ninja

meson builddir
ninja -C builddir
./builddir/src/koikoi
  • Loading branch information
nightsky30 committed Oct 7, 2019
1 parent 325e8fd commit 5e25f47
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ configure_file(input : 'config.h.in',
koikoi_sources = ['main.cpp', 'about.cpp', 'card.cpp', 'deck.cpp', 'hand.cpp', 'koikoi.cpp', 'player.cpp', 'preferences.cpp', 'yaku.cpp']

processed = qt5.preprocess(
moc_headers : ['about.h', 'card.h', 'config.h', 'deck.h', 'hand.h', 'koikoi.h', 'player.h', 'preferences.h', 'yaku.h'],
moc_headers : ['about.h', 'card.h', 'deck.h', 'hand.h', 'koikoi.h', 'player.h', 'preferences.h', 'yaku.h'],
qresources: ['../data/resources/deck.qrc', '../logo/icon.qrc'],
ui_files : '../ui/koikoi.ui'
)

Expand Down

0 comments on commit 5e25f47

Please sign in to comment.