~s-cecilio/lomse/master

« back to all changes in this revision

Viewing changes to include/lomse_config.h

  • Committer: cecilios
  • Date: 2010-10-10 13:35:19 UTC
  • Revision ID: git-v1:2b333198c3033525d15763b84eaf79dac9fdab80
Preparing to use CMake. Updating with new code and missing files. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
//#define _LML_VS_EXPRESS
36
36
 
37
37
//path for test scores ---------------------------------------------
38
 
#if defined(_LOMSE_LINUX_CODEBLOCKS)
39
 
    #define LOMSE_TEST_SCORES_PATH    "../../../../test-scores/";   //linux CodeBlobks
40
 
#elif defined(_LOMSE_WIN32_VSTUDIO)
41
 
    #define LOMSE_TEST_SCORES_PATH    "../../../test-scores/" //windows MS Visual studio .NET
42
 
#else
43
 
    #error("Unknown OS and IDE");
44
 
#endif
45
 
 
46
 
 
47
 
#endif  // __LOMSE_CONFIG_H__
 
38
#define LOMSE_TEST_SCORES_PATH    "../../test-scores/"   //codeblocks generated makefiles
 
39
//#if defined(_LOMSE_LINUX_CODEBLOCKS)
 
40
//    #define LOMSE_TEST_SCORES_PATH    "../../../../test-scores/";   //linux CodeBlobks
 
41
//#elif defined(_LOMSE_WIN32_VSTUDIO)
 
42
//    #define LOMSE_TEST_SCORES_PATH    "../../../test-scores/" //windows MS Visual studio .NET
 
43
//#else
 
44
//#error("Lomse config.: Unknown OS and IDE");
 
45
//#endif
 
46
 
 
47
 
 
48
#endif  // __LOMSE_CONFIG_H__
48
49