Using windows, visual studio 2022, vcpkg
Installing sol2 in vcpgk installs lua package aswell. By my understanding installing luajit and linking within a project like this wont work:
#include <sol/sol.hpp>
#include <luajit/lua.h>
#include <luajit/lualib.h>
#include <luajit/lauxlib.h>
Going into luajit/lauxlib.h
in visual studio shows all the code grayed out, which im assuming means that the code within the define is not included because sol already links lua.h.
What is the correct way to link and use LuaJIT with SOL?