Skip to content

CeleryMoonLight/JobShop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Job Shop Scheduling Problem

开发指南

构建项目文件

若要生成 Visual Studio 对应的解决方案及项目文件,请遵循以下步骤:

  • Download | CMake 下载 CMake 构建套件。对于 Windows 用户,可直接点击这个链接
  • 注意:在安装过程中,务必选中 Add CMake to the system PATH for the current user 选项。
  • 安装完毕后,请运行根目录下的 ./build.bat。稍等后,可在 ./build/ 下找到 JobShop.sln 解决方案文件,打开即可启动 Visual Studio 进行开发工作。

编译与添加新的代码文件

  • 右侧解决方案列表中,可看到三个项目:ALL_BUILDJobShopZERO_CHECK。右键单击 JobShop,并选择设为启动项目。

  • 注意:若要添加新的源代码文件,不要在 Visual Studio 中直接添加。请先退出 Visual Studio,在 ./include/(对于.h头文件)或 ./src/(对于.cpp源文件)下手动新建文件,然后再运行 ./build.bat 更新解决方案及项目文件,之后即可启动 Visual Studio 进行工作。