How to compile CLOGS library

FeizCNU

I want to compile CLOGS library.I follow this manual. I use Visual Studio 2010,python 3.4 in windows 10 x64. I didn't know anything about waf building system.I didn't know how to set Boost's include path. So I copy boost to the include path of msvc 10.

when I run python waf configure --without-xsltproc --msvc_version="msvc 10.0"

the result is enter image description here

It found foreach.hpp but not found program_options.hpp.But they were at same folder.

EthanLee

Visual Studio 2013 (for x64 environment)

boost 1.61.0

clogs 1.5.0

  1. Do install boost prebuilt binary for your VS version(Not source version) Prebuilt binary should have lib64-msvc-12.0 folder that has boost_program_options-vc120-mt-1_61.lib for program_options build testing.

  2. Set two windows global environments

    • INCLUDE=C:\yourboostroot;C:\youropenclheaderpath
    • LIBPATH=C:\yourboostroot\lib64-msvc-12.0;C:\youropencllibpath
  3. Open VS2013 x64 Native Tools Command Prompt

  4. Go to your clogs source root and type

    • python waf configure --without-doxygen --without-xsltproc

in this case I do not need cl-headers configure options

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to compile CLOGS library

From Dev

How to compile gcc with static library?

From Dev

How to compile gcc with shared library?

From Dev

How to compile forked library in Gradle?

From Dev

How to compile shared library on AIX

From Dev

How to compile libusb as shared library?

From Dev

How to compile gcc with shared library?

From Dev

how to include and compile a library in a makefile

From Dev

How to compile gcc with static library?

From Dev

How to compile PHP with new OpenSSL library

From Dev

How to compile and link against cddlib library?

From Dev

how to compile code using external dll library

From Dev

How can I compile nDPI library on Windows?

From Dev

How to compile and use FFMPEG library in Android Studio?

From Dev

How to compile latest FFmpeg Library for Android?

From Dev

How to compile with X11 library?

From Dev

How to compile latest FFmpeg Library for Android?

From Dev

How to compile a static library with Codelite 11.0.0?

From Dev

How to compile orson chart library for Swing app

From Dev

How to compile vlc library for android using MAC?

From Dev

How to compile a C program that includes a header from another library?

From Dev

How to compile a project with app and library in the same workspace with different configuration names?

From Java

How to import android project as library and NOT compile it as apk (Android studio 1.0)

From Dev

How to compile the smallest possible V8 library for Windows?

From Dev

How do I cross compile zlib with shared library on MAC OSX?

From Dev

How to set up compile library in android studio. LOMBOK

From Dev

How to compile ELF binary so that it can be loaded as dynamic library?

From Dev

How to compile C++ REST SDK into a static library on Ubuntu Linux?

From Dev

How to compile a program that need HDF5 library (using Codeblocks)?

Related Related

  1. 1

    How to compile CLOGS library

  2. 2

    How to compile gcc with static library?

  3. 3

    How to compile gcc with shared library?

  4. 4

    How to compile forked library in Gradle?

  5. 5

    How to compile shared library on AIX

  6. 6

    How to compile libusb as shared library?

  7. 7

    How to compile gcc with shared library?

  8. 8

    how to include and compile a library in a makefile

  9. 9

    How to compile gcc with static library?

  10. 10

    How to compile PHP with new OpenSSL library

  11. 11

    How to compile and link against cddlib library?

  12. 12

    how to compile code using external dll library

  13. 13

    How can I compile nDPI library on Windows?

  14. 14

    How to compile and use FFMPEG library in Android Studio?

  15. 15

    How to compile latest FFmpeg Library for Android?

  16. 16

    How to compile with X11 library?

  17. 17

    How to compile latest FFmpeg Library for Android?

  18. 18

    How to compile a static library with Codelite 11.0.0?

  19. 19

    How to compile orson chart library for Swing app

  20. 20

    How to compile vlc library for android using MAC?

  21. 21

    How to compile a C program that includes a header from another library?

  22. 22

    How to compile a project with app and library in the same workspace with different configuration names?

  23. 23

    How to import android project as library and NOT compile it as apk (Android studio 1.0)

  24. 24

    How to compile the smallest possible V8 library for Windows?

  25. 25

    How do I cross compile zlib with shared library on MAC OSX?

  26. 26

    How to set up compile library in android studio. LOMBOK

  27. 27

    How to compile ELF binary so that it can be loaded as dynamic library?

  28. 28

    How to compile C++ REST SDK into a static library on Ubuntu Linux?

  29. 29

    How to compile a program that need HDF5 library (using Codeblocks)?

HotTag

Archive