how to build Build/CesiumUnminified/Cesium.js

Hi,

I'm trying to run the sandcastle apps from a git checkout of Cesium /
master, and it fails as it is looking for
Build/CesiumUnminified/Cesium.js , which is not built by the default ant
target, nor the release ant target, nor the buildApps ant target.

How should one make this work?

Akos

The “combine” ant target is the one you want.

We have a list of the targets and their purposes on our wiki:

https://github.com/AnalyticalGraphicsInc/cesium/wiki/Contributor%27s-Guide#wiki-buildtargets

The "combine" ant target is the one you want.

still doesn't work, this is what I get in Chrome when looking at the
Sandcastle:

GET http://localhost/~akos/cesium/Build/CesiumUnminified/Cesium.js 404
(Not Found) index.html:16

and indeed:

$ ls Build/CesiumUnminified/
Assets Widgets Workers

thus, Cesium.js is not there

We have a list of the targets and their purposes on our wiki:

Home · CesiumGS/cesium Wiki · GitHub

thanks

I've noticed a similar problem. However, I only notice the problem when I try to build after making a change to one of the js files. If I just build straight from the master, it works.

Could this be some sort of casing or platform specific issue? I never see this problem, but I’m on a Windows machine.

Is it possible that the changes you make to the JS files might be causing a syntax error of some kind? If the code fails to parse, the build will likely fail.

I suppose it's technically possible, although the one change I made was extremely minor so I don't see why it would cause the code to fail to parse. I also didn't notice any errors from ant, but maybe that's not the way it works?