Compiling C++ file for usage in Julia

Well, you should use the folder where Julia is installed on your machine. Similar to in @sylvaticus 's post, you can obtain this via Sys.BINDIR and a modification where you replace bin by include\julia.

Same for the CxxWrap.jl directory, via

using CxxWrap
CxxWrap.prefix_path()

with \bin and \include appended (e.g. via joinpath).