# java_sup_utils **Repository Path**: sooncheer/java_sup_utils ## Basic Information - **Project Name**: java_sup_utils - **Description**: java开发中的一些便捷函数 - **Primary Language**: Java - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-08-04 - **Last Updated**: 2024-01-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # How to use cmake build this java porject example of Windows10, powershell ## 1.Generate Makefile create the "build" directory to save intermediate files and jar generator: "MinGW Makefiles" depends "mingw32-make.exe" (check `CMAKE_MAKE_PROGRAM:FILEPATH=` in CMakeCache.txt is "..\mingw32-make.exe") ```powershell cmake . -Bbuild -G "MinGW Makefiles" ``` ## 2.Compile Makefile ```powershell cmake --build build ``` ## 3.Run jar ```powershell cmake --build build -t run ``` ## 4.*Delete cmake cache ```powershell # warning: The command below will force directories/files in "build" directory, make sure you need it Remove-Item -Path build\* -Recurse ```