# simple_games **Repository Path**: wuhj2001/simple_games ## Basic Information - **Project Name**: simple_games - **Description**: 使用SFML图形库 c++的小游戏 CMake 跨平台工具链 - **Primary Language**: Unknown - **License**: Zlib - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-01-30 - **Last Updated**: 2024-01-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Simple Games # 编译(Winodws) ```bash $ cd simple_games/build $ cmake .. -G "MinGW Makefiles" $ mingw32-make.exe ``` # 编译(Linux) ```bash $ cd simple_games/build $ cmake .. $ make ``` 生成的可执行文件在每个小游戏包的bin目录下,如: ``` Arkanoid/bin/arkanoid.exe ``` build目录下是编译中间构建,无需理会