Building CUnit on Windows

前端 未结 4 1461
南旧
南旧 2020-12-10 20:18

Has anyone managed to build the CUnit library for Windows?

I want to run the same unit tests under Windows that I have currently developed under linux, so I need a w

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-10 20:56

    The answer above is wrong. The correct answer is as follows:

    libtoolize
    
    automake --add-missing 
    
    autoreconf
    
    ./configure --prefix=/mingw
    
    make
    
    make install
    

提交回复
热议问题