How to build library using cmake in windows -


i have written library mylib , want write cmakelists enable users build library using cmake in both linux , windows system. mylib contains folders bin, include, lib , src. know cmake can generate vs solution files in windows, , users can build in vs generate .lib files. when tried it, .lib files under folder named "debug". should if want .lib files go under mylib/lib when user builds solution?

i newbie in cmake , hope can me on this.

thanks!

you can set target property library:

set_property(target mylib property library_output_directory_debug ${output_dir}) 

see cmake docs more infos:


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -