No, there is no automatic reformulation of such constraints in GAMS. You need to do it yourself. Automatic reformulation is nice and convenient but if your go beyond toy problems your usually need to exploit more structure of the problem (reuse some intermediate variables, leave out some parts because the optimization direction fulfills constraints automatically, etc) to be able to efficiently solve the model, so therefore we leave this to the user (what’s the point of doing it for toy problems if you need to do it yourself for the real deal?). The reformulation “tricks” are really ease and there are plenty of books, papers, web sites that help with that. In this forum I have been promoting the HP Williams book for learning modeling (https://books.google.de/books?id=Cd1HiA--dBcC). Here is also a resource on the web (https://ocw.mit.edu/courses/sloan-school-of-management/15-053-optimization-methods-in-management-science-spring-2013/lecture-notes/MIT15_053S13_lec11.pdf).
I make it easy for myself and assume you x variable has an upper bound of 100, then you can use the following bigM reformulation:
Without the upper bound on x you can use indicator constraints (available in some solvers including Cplex, see https://www.gams.com/latest/docs/UG_LanguageFeatures.html#UG_LanguageFeatures_IndicatorConstraints) or a relatively complex reformulation using SOS1 variables. If you don’t have a good upper bound, do not use just a big number like 1e9. This screws up the numerics of the LP solver and other parts of the MIP algorithm.