CMakeLists for each C file

This commit is contained in:
2021-12-07 07:28:47 -08:00
parent a57e978f6c
commit 17b066e676
32 changed files with 321 additions and 38 deletions

17
src/poker/CMakeLists.txt Normal file
View File

@ -0,0 +1,17 @@
# Copyright (c) 2021 Dominic Msters
#
# This software is released under the MIT License.
# https://opensource.org/licenses/MIT
# Sources
target_sources(${PROJECT_NAME}
PRIVATE
bet.c
card.c
dealer.c
player.c
poker.c
pot.c
turn.c
winner.c
)