build.sh 376 B

12345678910111213141516
  1. #!/bin/bash
  2. # Build script for xmake-idea plugin
  3. set -e
  4. echo "Building xmake-idea plugin..."
  5. echo "This will build CLion debug module first, then the main plugin."
  6. # Build the entire project
  7. ./gradlew build
  8. echo "Build completed successfully!"
  9. echo "The plugin JAR is available in build/distributions/"
  10. echo ""
  11. echo "To run the plugin in development mode, use: ./run.sh"