# \[SOLVED\] itkTranslationTransform.h: No such file or directory

**URL:** https://discourse.itk.org/t/solved-itktranslationtransform-h-no-such-file-or-directory/2510
**Category:** Beginner Questions
**Created:** [December 11, 2019, 5:49pm UTC](https://discourse.itk.org/t/solved-itktranslationtransform-h-no-such-file-or-directory/2510 "2019-12-11T17:49:28Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![04jwei](https://discourse.itk.org/letter_avatar_proxy/v4/letter/0/a9adbd/32.png) [@04jwei](https://discourse.itk.org/u/04jwei)
#### Post date: [December 11, 2019, 5:49pm UTC](https://discourse.itk.org/t/solved-itktranslationtransform-h-no-such-file-or-directory/2510/1 "2019-12-11T17:49:28Z")

</div>

When using _make_ on /home/james/ITK/Examples/RegistrationITKv4, I get the error _itkTranslationTransform.h: No such file or directory_. I’m a bit confused why this occurs, because ITKGroup\_Core group is selected by default and itkTranslationTransform belongs to the core group (see screenshot below). What can I do to solve this error?

![image](https://discourse.itk.org/uploads/default/original/2X/0/0b87ff6e8d487985290c78710556d8dc01d6a9b3.png)

---

<div class="post-metadata">

### Author: ![dzenanz](https://discourse.itk.org/user_avatar/discourse.itk.org/dzenanz/32/1093_2.png) [@dzenanz](https://discourse.itk.org/u/dzenanz)
#### Post date: [December 11, 2019, 7:01pm UTC](https://discourse.itk.org/t/solved-itktranslationtransform-h-no-such-file-or-directory/2510/2 "2019-12-11T19:01:50Z")

</div>

You need to enable `BUILD_EXAMPLES` when configuring ITK, in order for it to properly build. And that further requires `ITK_BUILD_DEFAULT_MODULES`. If you are interested in a particular example, you can turn it into a stand-alone project, and then you only need to turn on and build the modules your example is using.

---

<div class="post-metadata">

### Author: ![04jwei](https://discourse.itk.org/letter_avatar_proxy/v4/letter/0/a9adbd/32.png) [@04jwei](https://discourse.itk.org/u/04jwei)
#### Post date: [December 12, 2019, 11:50am UTC](https://discourse.itk.org/t/solved-itktranslationtransform-h-no-such-file-or-directory/2510/3 "2019-12-12T11:50:38Z")

</div>

Understood, thank you!
