Skip to content
Navigation Menu
Toggle navigation
Sign in
Appearance settings
Platform
GitHub Copilot
Write better code with AI
GitHub Spark
New
Build and deploy intelligent apps
GitHub Models
New
Manage and compare prompts
GitHub Advanced Security
Find and fix vulnerabilities
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Discussions
Collaborate outside of code
Code Search
Find more, search less
Explore
Why GitHub
Documentation
GitHub Skills
Blog
Integrations
GitHub Marketplace
MCP Registry
View all features
Solutions
By company size
Enterprises
Small and medium teams
Startups
Nonprofits
By use case
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
By industry
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
Topics
AI
DevOps
Security
Software Development
View all
Explore
Learning Pathways
Events & Webinars
Ebooks & Whitepapers
Customer Stories
Partners
Executive Insights
Open Source
GitHub Sponsors
Fund open source developers
The ReadME Project
GitHub community articles
Repositories
Topics
Trending
Collections
Enterprise
Enterprise platform
AI-powered developer platform
Available add-ons
GitHub Advanced Security
Enterprise-grade security features
Copilot for business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search or jump to...
Search code, repositories, users, issues, pull requests...
Provide feedback
We read every piece of feedback, and take your input very seriously.
Include my email address so I can be contacted
Saved searches
Use saved searches to filter your results more quickly
Sign in
Sign up
Appearance settings
Resetting focus
{{ message }}
wikinder
/
sudoku-cpp-practice
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
Pull requests
Actions
Projects
Security
Insights
Additional navigation options
Collapse file tree
Files
main
Search this repository
cli
sui-raylib
src
CMakeLists.txt
.gitignore
GitHowTo.md
LICENSE
README.md
Breadcrumbs
sudoku-cpp-practice
/
sui-raylib
/
CMakeLists.txt
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
anyaf112358
Initial commit: CLI & GUI Sudoku practice
Nov 19, 2025
5f1051f
·
Nov 19, 2025
History
History
Open commit details
32 lines (24 loc) · 598 Bytes
Breadcrumbs
sudoku-cpp-practice
/
sui-raylib
/
CMakeLists.txt
Top
File metadata and controls
Code
Blame
32 lines (24 loc) · 598 Bytes
Raw
Copy raw file
Download raw file
You must be signed in to make or propose changes
More edit options
Open symbols panel
Edit and raw actions
cmake_minimum_required(VERSION 3.16...4.1.2) project(SudokuRaylib VERSION 0.1.0 LANGUAGES CXX ) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) include(FetchContent) # raylib を取得 set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) set(BUILD_GAMES OFF CACHE BOOL "" FORCE) FetchContent_Declare( raylib GIT_REPOSITORY https://github.com/raysan5/raylib.git GIT_TAG 5.0 ) FetchContent_MakeAvailable(raylib) add_executable(sudoku src/main.cpp ) target_link_libraries(sudoku PRIVATE raylib) if (MSVC) target_compile_options(sudoku PRIVATE /utf-8) endif()
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
cmake_minimum_required
(
VERSION
3.16...4.1.2)
project
(SudokuRaylib
VERSION
0.1.0
LANGUAGES CXX
)
set
(CMAKE_CXX_STANDARD 17)
set
(CMAKE_CXX_STANDARD_REQUIRED
ON
)
include
(FetchContent)
# raylib を取得
set
(BUILD_EXAMPLES
OFF
CACHE
BOOL
""
FORCE)
set
(BUILD_GAMES
OFF
CACHE
BOOL
""
FORCE)
FetchContent_Declare(
raylib
GIT_REPOSITORY https://github.com/raysan5/raylib.git
GIT_TAG 5.0
)
FetchContent_MakeAvailable(raylib)
add_executable
(sudoku
src/main.cpp
)
target_link_libraries
(sudoku
PRIVATE
raylib)
if
(
MSVC
)
target_compile_options
(sudoku
PRIVATE
/utf-8)
endif
()
While the code is focused, press Alt+F1 for a menu of operations.