This isn't a feature of `cp`, it's a feature of your shell (it expands the `*` to mean all non-dot files), so the answer depends on which shell you're using. For example, `zsh` supports this syntax:

    $ cp ^x /path/to/destination

Where `^x` means "all files except `x`"