digitalmars.D.learn - rdmd and -I args in Windows
- Zardoz (28/28) Jun 06 2012 I'm trying to compile a small project with rdmd with this line:
I'm trying to compile a small project with rdmd with this line: rdmd --build-only -JC:\Users\luis\Documents\GitHub\DEDCPU-16\src -Isrc -IGtkD\src -Ibuild -ofC:\Users\luis\Documents\GitHub\DEDCPU-16\build\lem1802.exe src\lem1802_fontview.d And I get this error : std.file.FileException std\file.d(699): src\Config.d: El sistema no puede encontrar el archivo especificado. (Aka "System can't find the file") Why this is happening ? I try with absolute and relative paths and nothing it's working. main source code file (lem1802_fontview.d) have this initial lines : module lem1802_fontview; import Config; import ... Config.d is placed in C:\Users\luis\Documents\GitHub\DEDCPU-16\build\src , being generated by CMake and contains : module Config; enum VERSION_MAJOR = ... Directory tree : Main - C:\Users\luis\Documents\GitHub\DEDCPU-16 \--->src <- Here is lem1802_fontview.d \--->dcpu \--->ui \--->build <- Here is generated Config.d
Jun 06 2012