SmartGuitarAmp

Guitar plugin made with JUCE that uses neural networks to emulate a tube amplifier
Log | Files | Refs | Submodules | README

CMakeLists.txt (474B)


      1 juce_add_binary_data(BinaryData SOURCES
      2     amp_clean.jpg
      3     amp_lead.jpg
      4     amp_off.jpg
      5     knob_silver.png
      6     led_blue_off.png
      7     led_blue_on.png
      8     led_blue_on_off.png
      9     led_red_off.png
     10     led_red_on.png
     11     power_switch_down.png
     12     power_switch_up.png
     13     ../models/bluej_clean_p0088.json
     14     ../models/bluej_fullD_p0153.json
     15 )
     16 
     17 # Need to build BinaryData with -fPIC flag on Linux
     18 set_target_properties(BinaryData PROPERTIES
     19     POSITION_INDEPENDENT_CODE TRUE)